René's URL Explorer Experiment


Title: ENH: add figure.legend; outside kwarg for better layout outside subplots by jklymak · Pull Request #13072 · matplotlib/matplotlib · GitHub

Open Graph Title: ENH: add figure.legend; outside kwarg for better layout outside subplots by jklymak · Pull Request #13072 · matplotlib/matplotlib

X Title: ENH: add figure.legend; outside kwarg for better layout outside subplots by jklymak · Pull Request #13072 · matplotlib/matplotlib

Description: PR Summary If constrained_layout is being used, this new kwarg allows the user to automagically place a legend outside the subplots in a grid spec (or all the subplots in a figure for a more straightforward example). Closes #13023 ping @dcherian simple example fig, axs = plt.subplots(1, 2, constrained_layout=True) for i, ax in enumerate(axs): ax.plot(range(10), label=f'Boo{i}') lg = fig.legend(loc='upper right', outside=True) plt.show() yields: Nested gridspec example fig = plt.figure(constrained_layout=True) gs0 = fig.add_gridspec(1, 2) gs = gs0[0].subgridspec(1, 1) for i in range(1): ax = fig.add_subplot(gs[i,0]) ax.plot(range(10), label=f'Boo{i}') lg = fig.legend(ax=[ax], loc='upper right', outside=True, borderaxespad=4) gs2 = gs0[1].subgridspec(3, 1) axx = [] for i in range(3): ax = fig.add_subplot(gs2[i, 0]) ax.plot(range(10), label=f'Who{i}', color=f'C{i+1}') if i < 2: ax.set_xticklabels('') axx += [ax] lg2 = fig.legend(ax=axx[:-1], loc='upper right', outside=True, borderaxespad=4) plt.show() yields: Added ability to vertically lay-out the corners See outside='vertical' below... import matplotlib.pyplot as plt fig = plt.figure(constrained_layout=True) gs0 = fig.add_gridspec(1, 2) gs = gs0[0].subgridspec(1, 1) for i in range(1): ax = fig.add_subplot(gs[i,0]) ax.plot(range(10), label=f'Boo{i}') lg = fig.legend(ax=[ax], loc='upper right', outside=True, borderaxespad=4) gs2 = gs0[1].subgridspec(3, 1) axx = [] for i in range(3): ax = fig.add_subplot(gs2[i, 0]) ax.plot(range(10), label=f'Who{i}', color=f'C{i+1}') if i < 2: ax.set_xticklabels('') axx += [ax] lg2 = fig.legend(ax=axx[:-1], loc='upper right', outside='vertical', borderaxespad=4, ncol=2) plt.show() yields: needs more tests PR Checklist Has Pytest style unit tests Code is Flake 8 compliant New features are documented, with examples if plot related Documentation is sphinx and numpydoc compliant Added an entry to doc/users/next_whats_new/ if major new feature (follow instructions in README.rst there) Documented in doc/api/api_changes.rst if API changed in a backward-incompatible way

Open Graph Description: PR Summary If constrained_layout is being used, this new kwarg allows the user to automagically place a legend outside the subplots in a grid spec (or all the subplots in a figure for a more strai...

X Description: PR Summary If constrained_layout is being used, this new kwarg allows the user to automagically place a legend outside the subplots in a grid spec (or all the subplots in a figure for a more strai...

Opengraph URL: https://github.com/matplotlib/matplotlib/pull/13072

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:3f20ea1d-7663-2121-3390-467665438c2d
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9C46:1FE1ED:11CC36:1974BE:6A53595C
html-safe-noncee6c50ffdf697e53a8100173ba22d4b758a2c5279338e353c0050e74641d6f502
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5QzQ2OjFGRTFFRDoxMUNDMzY6MTk3NEJFOjZBNTM1OTVDIiwidmlzaXRvcl9pZCI6Ijg5MDM5ODIzMjc1ODk0NjAzMTYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmaca9e619bc4175288a9145d8756c59abef898dbae1e0fa5fb6f4060b94831f24f4
hovercard-subject-tagpull_request:241612966
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/matplotlib/matplotlib/pull/13072/files
twitter:imagehttps://avatars.githubusercontent.com/u/1562854?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/1562854?s=400&v=4
og:image:altPR Summary If constrained_layout is being used, this new kwarg allows the user to automagically place a legend outside the subplots in a grid spec (or all the subplots in a figure for a more strai...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/pull/13072/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F13072%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fpull%2F13072%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/pull/13072/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/13072/files
Reloadhttps://github.com/matplotlib/matplotlib/pull/13072/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 408 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib%2Fissues%2Fnew%2Fchoose
jklymakhttps://github.com/jklymak
matplotlib:masterhttps://github.com/matplotlib/matplotlib/tree/master
jklymak:enh-add-gridspec-legendhttps://github.com/jklymak/matplotlib/tree/enh-add-gridspec-legend
Conversation 47 https://github.com/matplotlib/matplotlib/pull/13072
Commits 16 https://github.com/matplotlib/matplotlib/pull/13072/commits
Checks 0 https://github.com/matplotlib/matplotlib/pull/13072/checks
Files changed https://github.com/matplotlib/matplotlib/pull/13072/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
ENH: add figure.legend; outside kwarg for better layout outside subplots https://github.com/matplotlib/matplotlib/pull/13072/files#top
Show all changes 16 commits https://github.com/matplotlib/matplotlib/pull/13072/files
19935d6 ENH: add figure.legend_outside jklymak Jan 1, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/19935d60e2c67e6c70f699923e49aa7a560a20ab
20a56fb ENH: add figure.legend_outside jklymak Jan 1, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/20a56fb0d2bbf6b2b3ac656de214ad72fe823c9c
f655c14 ENH: add figure.legend_outside jklymak Jan 1, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/f655c1481b00afda44d0cc2aabd545d811afc92e
a761639 FIX: add legend kwarg outside jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/a761639cd2b358b1e54c15ecbb960edc8a8bceb7
43ce090 FIX: add legend kwarg outside jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/43ce090dc381ea4bc4b5fd30486227e9130b2bd8
81209e6 ENH: add vertical layout jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/81209e6ae9719ff009d9a813986f398d1a87652b
f3c138a ENH: change axs to ax jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/f3c138aba852791b70291d615f42b2a3439a6c6e
004755b DOC: fix and expand example jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/004755bd326761a1502ce3579ac11a5f46239e14
67cd299 DOC: fix and expand example jklymak Jan 2, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/67cd29916107ed8e3e92e16bc08f37c4ae032191
82f4498 DOC: fix and expand example jklymak Jan 3, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/82f44987d48fbec85f89c617be7405b469cb8136
1bd8a85 ENH: add outside argument to axes legend as well jklymak Jan 4, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/1bd8a85e792c3703b04391b93d14e205ad87f678
ed1a18a FIX: make borderaxespad consistent jklymak Jan 6, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/ed1a18a52a8593f8547861923bc7822bbedf51c5
b26f867 FIX: make borderaxespad consistent jklymak Jan 6, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/b26f8673d5839c01be38e5e99e998a4abba78234
6986452 TST: fix test values jklymak Jan 28, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/69864524816d0d9b3051385baa6742338438dbf3
3aa9fe9 FL8 jklymak Jan 30, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/3aa9fe9678f24e3e42e4e94c945e957dd9c13a92
3dbd703 Small cleanup jklymak Jan 30, 2019 https://github.com/matplotlib/matplotlib/pull/13072/commits/3dbd7037ace43e288e8773fca78d283a6defa2f9
Clear filters https://github.com/matplotlib/matplotlib/pull/13072/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
figlegendoutside_demo.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-d1dd2a3cafe146d7a4080441bd8ae857f768c4ecb174b1a05ea78e815ba3aaad
_constrained_layout.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
_layoutbox.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-8c8e9d4e945daccc2b101b332d04befec62776c506ff6b3359ac0e6e0b261fa0
_subplots.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-7452babd771a5640e657d38cb31f9a76244db6d3fffa8515a3e20f16108e4cb2
figure.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
gridspec.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-5fe0a531eb6f4d8ecbea1c817251fd13792b67735a96e07263655d69df73b34a
legend.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-e7a00bb4a353fa623c1d0c1de5c6ca602b7ab38e8906d4842640983133b9196a
test_legend.py https://github.com/matplotlib/matplotlib/pull/13072/files#diff-1b573023d84935306a147bec7f137e59ae79c3d4f3bbea81152eb0c94b58a579
examples/text_labels_and_annotations/figlegendoutside_demo.pyhttps://github.com/matplotlib/matplotlib/pull/13072/files#diff-d1dd2a3cafe146d7a4080441bd8ae857f768c4ecb174b1a05ea78e815ba3aaad
View file https://github.com/jklymak/matplotlib/blob/3dbd7037ace43e288e8773fca78d283a6defa2f9/examples/text_labels_and_annotations/figlegendoutside_demo.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/13072/{{ revealButtonHref }}
lib/matplotlib/_constrained_layout.pyhttps://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
View file https://github.com/jklymak/matplotlib/blob/3dbd7037ace43e288e8773fca78d283a6defa2f9/lib/matplotlib/_constrained_layout.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/13072/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-ec400fe5385be373ec266d3c296f8b3cb7bb327cc4b05b406e8d591fcb5eadf7
lib/matplotlib/_layoutbox.pyhttps://github.com/matplotlib/matplotlib/pull/13072/files#diff-8c8e9d4e945daccc2b101b332d04befec62776c506ff6b3359ac0e6e0b261fa0
View file https://github.com/jklymak/matplotlib/blob/3dbd7037ace43e288e8773fca78d283a6defa2f9/lib/matplotlib/_layoutbox.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/13072/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-8c8e9d4e945daccc2b101b332d04befec62776c506ff6b3359ac0e6e0b261fa0
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-8c8e9d4e945daccc2b101b332d04befec62776c506ff6b3359ac0e6e0b261fa0
lib/matplotlib/axes/_subplots.pyhttps://github.com/matplotlib/matplotlib/pull/13072/files#diff-7452babd771a5640e657d38cb31f9a76244db6d3fffa8515a3e20f16108e4cb2
View file https://github.com/jklymak/matplotlib/blob/3dbd7037ace43e288e8773fca78d283a6defa2f9/lib/matplotlib/axes/_subplots.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/13072/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-7452babd771a5640e657d38cb31f9a76244db6d3fffa8515a3e20f16108e4cb2
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-7452babd771a5640e657d38cb31f9a76244db6d3fffa8515a3e20f16108e4cb2
lib/matplotlib/figure.pyhttps://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
View file https://github.com/jklymak/matplotlib/blob/3dbd7037ace43e288e8773fca78d283a6defa2f9/lib/matplotlib/figure.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/matplotlib/matplotlib/pull/13072/{{ revealButtonHref }}
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
https://github.com/matplotlib/matplotlib/pull/13072/files#diff-01b0c7a8c4445ae46a3c055ace167e99f59dcd54dbf04c84bca2132914d2f8df
Please reload this pagehttps://github.com/matplotlib/matplotlib/pull/13072/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.