Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
Autoscale for ax.arrow()#13788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Closed
Uh oh!
There was an error while loading.Please reload this page.
Closed
Autoscale for ax.arrow()#13788
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
3 changes: 3 additions & 0 deletions.github/FUNDING.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # These are supported funding model platforms | ||
| custom: https://numfocus.salsalabs.org/donate-to-matplotlib/index.html |
20 changes: 20 additions & 0 deletionsLICENSE/LICENSE_PAINT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| Copyright 2000 by Object Craft P/L, Melbourne, Australia. | ||
| All Rights Reserved | ||
| Permission to use, copy, modify, and distribute this software and its | ||
| documentation for any purpose and without fee is hereby granted, | ||
| provided that the above copyright notice appear in all copies and that | ||
| both that copyright notice and this permission notice appear in | ||
| supporting documentation, and that the name of Object Craft | ||
| is not be used in advertising or publicity pertaining to | ||
| distribution of the software without specific, written prior | ||
| permission. | ||
| OBJECT CRAFT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | ||
| INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO | ||
| EVENT SHALL OBJECT CRAFT BE LIABLE FOR ANY SPECIAL, INDIRECT OR | ||
| CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF | ||
| USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
| OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
| PERFORMANCE OF THIS SOFTWARE. |
92 changes: 92 additions & 0 deletionsci/azure-pipelines-steps.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| parameters: | ||
| platform: none | ||
| installer: none | ||
| steps: | ||
| - task: UsePythonVersion@0 | ||
| inputs: | ||
| versionSpec: '$(python.version)' | ||
| architecture: 'x64' | ||
| displayName: 'Use Python $(python.version)' | ||
| condition: and(succeeded(), ne(variables['python.version'], 'Pre')) | ||
| - task: stevedower.python.InstallPython.InstallPython@1 | ||
| displayName: 'Use prerelease Python' | ||
| inputs: | ||
| prerelease: true | ||
| condition: and(succeeded(), eq(variables['python.version'], 'Pre')) | ||
| - ${{ if eq(parameters.installer, 'nuget') }}: | ||
| - task: NuGetToolInstaller@0 | ||
| displayName: 'Use latest available Nuget' | ||
| - script: | | ||
| nuget install libpng-msvc14-x64 -ExcludeVersion -OutputDirectory "$(build.BinariesDirectory)" | ||
| nuget install zlib-msvc14-x64 -ExcludeVersion -OutputDirectory "$(build.BinariesDirectory)" | ||
| echo ##vso[task.prependpath]$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\bin_release | ||
| echo ##vso[task.prependpath]$(build.BinariesDirectory)\zlib-msvc14-x64\build\native\bin_release | ||
| echo ##vso[task.setvariable variable=CL]/I$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\include /I$(build.BinariesDirectory)\zlib-msvc14-x64\build\native\include | ||
| echo ##vso[task.setvariable variable=LINK]/LIBPATH:$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\lib_release /LIBPATH:$(build.BinariesDirectory)\zlib-msvc14-x64\build\native\lib_release | ||
| displayName: 'Install dependencies with nuget' | ||
| - ${{ if eq(parameters.installer, 'brew') }}: | ||
| - script: | | ||
| brew install pkg-config ffmpeg imagemagick mplayer ccache | ||
| displayName: 'Install dependencies with brew' | ||
| - ${{ if eq(parameters.installer, 'apt') }}: | ||
| - script: | | ||
| sudo apt-add-repository ppa:jonathonf/ffmpeg-3 | ||
| sudo apt-get update | ||
| sudo apt-get install \ | ||
| cm-super \ | ||
| dvipng \ | ||
| ffmpeg \ | ||
| gdb \ | ||
| gir1.2-gtk-3.0 \ | ||
| graphviz \ | ||
| inkscape \ | ||
| libcairo2 \ | ||
| libgeos-dev \ | ||
| libgirepository-1.0.1 \ | ||
| lmodern \ | ||
| otf-freefont \ | ||
| pgf \ | ||
| texlive-fonts-recommended \ | ||
| texlive-latex-base \ | ||
| texlive-latex-extra \ | ||
| texlive-latex-recommended \ | ||
| texlive-xetex texlive-luatex | ||
| displayName: 'Install dependencies with apt' | ||
| - script: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt | ||
| displayName: 'Install dependencies with pip' | ||
| - script: | | ||
| pip install -ve . | ||
| displayName: "Install self" | ||
| env: | ||
| MPLLOCALFREETYPE: 1 | ||
| - script: env | ||
| displayName: 'print env' | ||
| - script: | | ||
| env | ||
| pytest --junitxml=junit/test-results.xml -raR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n 2 | ||
| displayName: 'pytest' | ||
| env: | ||
| PYTHONFAULTHANDLER: 1 | ||
| - task: PublishTestResults@2 | ||
| inputs: | ||
| testResultsFiles: '**/test-results.xml' | ||
| testRunTitle: 'Python $(python.version)' | ||
| condition: succeededOrFailed() |
Binary file addeddoc/_static/blume_table_example.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addeddoc/_static/geoplot_nyc_traffic_tickets.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addeddoc/_static/numpngw_animated_example.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addeddoc/_static/ridge_map_white_mountains.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addeddoc/_static/yellowbrick.png
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletionsdoc/api/backend_template_api.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| :mod:`matplotlib.backends.backend_template` | ||
| =========================================== | ||
| .. automodule:: matplotlib.backends.backend_template | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
5 changes: 5 additions & 0 deletionsdoc/api/next_api_changes/2018-09-18-AL.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| Deprecations | ||
| ```````````` | ||
| ``backend_wx.DEBUG_MSG`` is deprecated. The wx backends now use regular | ||
| logging. |
10 changes: 6 additions & 4 deletionsdoc/api/next_api_changes/2019-01-09-deprecations.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| Deprecations | ||
| ```````````` | ||
| The ``matplotlib.sphinxext.mathmpl`` and | ||
| ``matplotlib.sphinxext.plot_directive`` interfaces have changed from the | ||
| (Sphinx-)deprecated function-based interface to a class-based interface. This | ||
| should not affect end users, but the | ||
| ``matplotlib.sphinxext.mathmpl.math_directive`` and | ||
| ``matplotlib.sphinxext.plot_directive.plot_directive`` functions are now | ||
| deprecated. |
3 changes: 3 additions & 0 deletionsdoc/api/next_api_changes/autoscale_for_arrow.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Autoscale for arrow | ||
| ``````````````````````````````````` | ||
| Calling ax.arrow() will now autoscale the axes. |
5 changes: 5 additions & 0 deletionsdoc/api/next_api_changes/deprecated_empty_add_axes.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| Deprecations | ||
| ```````````` | ||
| Calling ``fig.add_axes()`` with no arguments currently return None, | ||
| will raise an error in the future |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.