René's URL Explorer Experiment


Title: `patches.Scatter()` and `patches.Plot()` should be added. · Issue #29318 · matplotlib/matplotlib · GitHub

Open Graph Title: `patches.Scatter()` and `patches.Plot()` should be added. · Issue #29318 · matplotlib/matplotlib

X Title: `patches.Scatter()` and `patches.Plot()` should be added. · Issue #29318 · matplotlib/matplotlib

Description: Problem Only using patches.Rectangle() of plt.subplots() works properly as shown below: from torchvision.datasets import CelebA my_data = CelebA( root="data", split="all", target_type=["bbox", "landmarks"] ) import matplotlib.pyplot as p...

Open Graph Description: Problem Only using patches.Rectangle() of plt.subplots() works properly as shown below: from torchvision.datasets import CelebA my_data = CelebA( root="data", split="all", target_type=["bbox", "lan...

X Description: Problem Only using patches.Rectangle() of plt.subplots() works properly as shown below: from torchvision.datasets import CelebA my_data = CelebA( root="data", split="all", targe...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/29318

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"`patches.Scatter()` and `patches.Plot()` should be added.","articleBody":"### Problem\r\n\r\nOnly using [patches.Rectangle()](https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.Rectangle.html) of [plt.subplots()](https://matplotlib.org/stable/gallery/subplots_axes_and_figures/subplots_demo.html#creating-multiple-subplots-using-plt-subplots) works properly as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n    rect = Rectangle(xy=(x, y), width=w, height=h, linewidth=3, edgecolor='r', facecolor='none', clip_on=True) # Here\r\n    axis.add_patch(p=rect)                                                                                     # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 012242](https://github.com/user-attachments/assets/e56af00e-ca43-4902-8512-ff0b0142374d)\r\n\r\nAnd only using [axes.Axes.scatter()](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.scatter.html) of `plt.subplots()` works properly as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\nimport torchvision\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\nfrom matplotlib.patches import Circle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n\r\n    for px, py in lm.split(2):                # Here\r\n        axis.scatter(x=px, y=py, c='#1f77b4') # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 020807](https://github.com/user-attachments/assets/4aac26da-1a63-4a3e-899e-ec9ed270168c)\r\n\r\nAnd only using `axes.Axes.plot()` of `plt.subplots()` works properly as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\nimport torchvision\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\nfrom matplotlib.patches import Circle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n\r\n    px = []                    # Here\r\n    py = []                    # Here\r\n    for j, v in enumerate(lm): # Here\r\n        if j%2 == 0:           # Here\r\n            px.append(v)       # Here\r\n        else:                  # Here\r\n            py.append(v)       # Here\r\n    axis.plot(px, py)          # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 021239](https://github.com/user-attachments/assets/ef5af7a9-21c1-4363-919a-d961d746d26b)\r\n\r\nBut using `patches.Rectangle()` of `plt.subplots()` with `axes.Axes.scatter()` of `plt.subplots()` doesn't work properly as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n    rect = Rectangle(xy=(x, y), width=w, height=h, linewidth=3, edgecolor='r', facecolor='none', clip_on=True) # Here\r\n    axis.add_patch(p=rect)                                                                                     # Here\r\n\r\n    for px, py in lm.split(2):                # Here\r\n        axis.scatter(x=px, y=py, c='#1f77b4') # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 012506](https://github.com/user-attachments/assets/ff290aef-34ba-44fe-9592-49a13fb3b42e)\r\n\r\nAnd using `patches.Rectangle()` of `plt.subplots()` with `axes.Axes.plot()` of `plt.subplots()` doesn't work properly as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n    rect = Rectangle(xy=(x, y), width=w, height=h, linewidth=3, edgecolor='r', facecolor='none', clip_on=True) # Here\r\n    axis.add_patch(p=rect)                                                                                     # Here\r\n\r\n    px = []                    # Here\r\n    py = []                    # Here\r\n    for j, v in enumerate(lm): # Here\r\n        if j%2 == 0:           # Here\r\n            px.append(v)       # Here\r\n        else:                  # Here\r\n            py.append(v)       # Here\r\n    axis.plot(px, py)          # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 013942](https://github.com/user-attachments/assets/f7414b6b-f1f1-45fb-9ea4-9e6c8da99e5e)\r\n\r\nSo instead, I used `patches.Rectangle()` of `plt.subplots()` with [patches.Circle()](https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.Circle.html) of `plt.subplots()`, then they properly work as shown below:\r\n\r\n```python\r\nfrom torchvision.datasets import CelebA\r\n\r\nmy_data = CelebA(\r\n    root=\"data\",\r\n    split=\"all\",\r\n    target_type=[\"bbox\", \"landmarks\"]\r\n)\r\n\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.patches import Rectangle\r\nfrom matplotlib.patches import Circle\r\n\r\nfig, axes = plt.subplots(nrows=2, ncols=5, figsize=(12, 6))\r\nfor (im, ((x, y, w, h), lm)), axis in zip(my_data, axes.ravel()):\r\n    axis.imshow(X=im)\r\n    rect = Rectangle(xy=(x, y), width=w, height=h, linewidth=3, edgecolor='r', facecolor='none', clip_on=True) # Here\r\n    axis.add_patch(p=rect)                                                                                     # Here\r\n\r\n    for px, py in lm.split(2):                # Here\r\n        axis.add_patch(p=Circle(xy=(px, py))) # Here\r\n```\r\n\r\n![Screenshot 2024-12-16 014626](https://github.com/user-attachments/assets/653ec8e8-78f8-48ee-92ae-899cdb7ce01f)\r\n\r\n### Proposed solution\r\n\r\nSo, it seems like [matplotlib.patches](https://matplotlib.org/stable/api/patches_api.html) works with `matplotlib.patches` so `patches.Scatter()` and `patches.Plot()` should be added.","author":{"url":"https://github.com/hyperkai","@type":"Person","name":"hyperkai"},"datePublished":"2024-12-15T17:14:51.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/29318/matplotlib/issues/29318"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:291bdde8-f6aa-0adc-41b5-48d9422557d8
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAD44:2521B5:E2B0B6:134A6B0:6A521C8D
html-safe-noncef2162cd23840f3f9c38f3328ecfb4bb48fcf07c23112dbd098afdb18b772eab3
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRDQ0OjI1MjFCNTpFMkIwQjY6MTM0QTZCMDo2QTUyMUM4RCIsInZpc2l0b3JfaWQiOiI1NjY5OTU1Mjg4OTUxODIzNTAxIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac2182f60e6360c8257ade5b66115e49ee8838bba325030741456cc850ba68bdb4
hovercard-subject-tagissue:2740771736
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/29318/issue_layout
twitter:imagehttps://opengraph.githubassets.com/7ab417150f46a7c209359db90f09d4f701948b858ccc35c3f370c6815af4001d/matplotlib/matplotlib/issues/29318
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/7ab417150f46a7c209359db90f09d4f701948b858ccc35c3f370c6815af4001d/matplotlib/matplotlib/issues/29318
og:image:altProblem Only using patches.Rectangle() of plt.subplots() works properly as shown below: from torchvision.datasets import CelebA my_data = CelebA( root="data", split="all", target_type=["bbox", "lan...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamehyperkai
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
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
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/29318#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F29318
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%2Fissues%2F29318
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/29318
Reloadhttps://github.com/matplotlib/matplotlib/issues/29318
Reloadhttps://github.com/matplotlib/matplotlib/issues/29318
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29318
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29318
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 409 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
patches.Scatter() and patches.Plot() should be added.https://github.com/matplotlib/matplotlib/issues/29318#top
Community supportUsers in need of help.https://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Community%20support%22
https://github.com/hyperkai
hyperkaihttps://github.com/hyperkai
on Dec 15, 2024https://github.com/matplotlib/matplotlib/issues/29318#issue-2740771736
patches.Rectangle()https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.Rectangle.html
plt.subplots()https://matplotlib.org/stable/gallery/subplots_axes_and_figures/subplots_demo.html#creating-multiple-subplots-using-plt-subplots
https://private-user-images.githubusercontent.com/29433710/395876623-e56af00e-ca43-4902-8512-ff0b0142374d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4NzY2MjMtZTU2YWYwMGUtY2E0My00OTAyLTg1MTItZmYwYjAxNDIzNzRkLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWI2OTkxMmE2NGIwOTlhMjNjZGY0NjRmNWMwNmIzYTIyYTg4Y2Y4M2M1MmUwMGQwMzI2NDc4NzRiZWQxNDllMjEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.t3FrcINqdRcdQQo6HJVJ5Nn80YtlDa_doHihrI3BzQE
axes.Axes.scatter()https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.scatter.html
https://private-user-images.githubusercontent.com/29433710/395879368-4aac26da-1a63-4a3e-899e-ec9ed270168c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4NzkzNjgtNGFhYzI2ZGEtMWE2My00YTNlLTg5OWUtZWM5ZWQyNzAxNjhjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTcwNDA4ZDBlZDlhOTAxMjA3OWY3MGQ4YzY0YjY4MjA1NTQ1NTJjOTQzOGUwNTExOGY3MWNlYzVjNjc1NWVkMTQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.VPkHs5m7MQPxP9CvLoU1uF4hUakPo8ZKJqkFjgB9oDI
https://private-user-images.githubusercontent.com/29433710/395879608-ef5af7a9-21c1-4363-919a-d961d746d26b.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4Nzk2MDgtZWY1YWY3YTktMjFjMS00MzYzLTkxOWEtZDk2MWQ3NDZkMjZiLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTRjYjlhZjVlMzA4ZDljMDM2YmE5NjljZDg4ODZkOTliNjMyY2QzMDExNmExNWFlYTNlODhkZjMyZWQ5MzQxZjYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.DCU22Cz-O5wjjNU8Jlg9MPScnksfijQFO04IpyF-uz8
https://private-user-images.githubusercontent.com/29433710/395876789-ff290aef-34ba-44fe-9592-49a13fb3b42e.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4NzY3ODktZmYyOTBhZWYtMzRiYS00NGZlLTk1OTItNDlhMTNmYjNiNDJlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTg5ZjVlYWMxMzJhMDMzNGQ0YWJiOTI1NzM2OThmMmEwM2MyN2JlYThhOGVlMzQ3Mzk4YWQ5NjI3ODg1ZjE2NTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.2Dp7wzhdRhutkMnZ617mYgGwc11bk4iw7-YB8b6IoU8
https://private-user-images.githubusercontent.com/29433710/395877744-f7414b6b-f1f1-45fb-9ea4-9e6c8da99e5e.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4Nzc3NDQtZjc0MTRiNmItZjFmMS00NWZiLTllYTQtOWU2YzhkYTk5ZTVlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWRkOTU2MmE5NDYyNDY2NGJmNTI1MDkxNTIwYzNkYTUxNWQ5NTdhODM2ZjUwNmFhZDM2YzZiNTA2ZjA2MzUxZTEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.rIiv92rb_BvIgT9F82dBsYS0pZE3ZLitYRK847AXvfk
patches.Circle()https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.Circle.html
https://private-user-images.githubusercontent.com/29433710/395878252-653ec8e8-78f8-48ee-92ae-899cdb7ce01f.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NjY0NTgsIm5iZiI6MTc4Mzc2NjE1OCwicGF0aCI6Ii8yOTQzMzcxMC8zOTU4NzgyNTItNjUzZWM4ZTgtNzhmOC00OGVlLTkyYWUtODk5Y2RiN2NlMDFmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDEwMzU1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWZkNzk5YzVhMmZkMjZjODZmODU5MDE4Y2NiOWQ1ZjhhNTU0MWI5MTljNjE4Y2U4MzFkOGQwOTY1Njc5MTk1OTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.QcROvpAqpaglZzmI4u06CQUDm_oIq7jXiLTInIH9qHU
matplotlib.patcheshttps://matplotlib.org/stable/api/patches_api.html
Community supportUsers in need of help.https://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Community%20support%22
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.