René's URL Explorer Experiment


Title: [Bug]: Cannot draw arrow from polar plot origin after setting rticks · Issue #29516 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: Cannot draw arrow from polar plot origin after setting rticks · Issue #29516 · matplotlib/matplotlib

X Title: [Bug]: Cannot draw arrow from polar plot origin after setting rticks · Issue #29516 · matplotlib/matplotlib

Description: Bug summary I am trying to create a polar plot of some data, with an annotation arrow pointing towards some other point in the plot. However, I get a StopIteration, presumably because of setting the rticks, which unexpectedly excludes th...

Open Graph Description: Bug summary I am trying to create a polar plot of some data, with an annotation arrow pointing towards some other point in the plot. However, I get a StopIteration, presumably because of setting th...

X Description: Bug summary I am trying to create a polar plot of some data, with an annotation arrow pointing towards some other point in the plot. However, I get a StopIteration, presumably because of setting th...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: Cannot draw arrow from polar plot origin after setting rticks","articleBody":"### Bug summary\n\nI am trying to create a polar plot of some data, with an annotation arrow pointing towards some other point in the plot. However, I get a StopIteration, presumably because of setting the rticks, which unexpectedly excludes the origin from the radius limits.\n\n### Code for reproduction\n\n```Python\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n# Radius, random numbers in [0, 1)\nrng = np.random.default_rng(seed=42)\nr = rng.random((24,))\n\n# 0 to 2pi\ntheta = np.linspace(0, 2, 24, endpoint=False) * np.pi\n\nfig, ax = plt.subplots(subplot_kw={'projection': 'polar'})\n\n# Data to plot\nax.plot(theta, r)\nax.scatter(theta, r, c=r, cmap='viridis')\nax.set_rticks([1, 2, 3])  # Less radial ticks\nax.grid(True)\n\n# Where the annotation arrow should point\nan_r = 0.670\nan_theta = 0.820\n\n# Visualise arrow end-point\nax.scatter(an_theta, an_r)\n\n# Create arrow\nax.annotate('',\n            xy=(an_theta, an_r),  # theta, radius\n            xytext=(0, 0), \n            arrowprops=dict(facecolor='black', shrink=0),\n            horizontalalignment='right'\n            )\n\nplt.show()\n```\n\n### Actual outcome\n\n---------------------------------------------------------------------------\nStopIteration                             Traceback (most recent call last)\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/formatters.py:340](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/formatters.py#line=339), in BaseFormatter.__call__(self, obj)\n    338     pass\n    339 else:\n--\u003e 340     return printer(obj)\n    341 # Finally look for special method names\n    342 method = get_real_method(obj, self.print_method)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/pylabtools.py:152](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/pylabtools.py#line=151), in print_figure(fig, fmt, bbox_inches, base64, **kwargs)\n    149     from matplotlib.backend_bases import FigureCanvasBase\n    150     FigureCanvasBase(fig)\n--\u003e 152 fig.canvas.print_figure(bytes_io, **kw)\n    153 data = bytes_io.getvalue()\n    154 if fmt == 'svg':\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/backend_bases.py:2342](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/backend_bases.py#line=2341), in FigureCanvasBase.print_figure(self, filename, dpi, facecolor, edgecolor, orientation, format, bbox_inches, pad_inches, bbox_extra_artists, backend, **kwargs)\n   2336     renderer = _get_renderer(\n   2337         self.figure,\n   2338         functools.partial(\n   2339             print_method, orientation=orientation)\n   2340     )\n   2341     with getattr(renderer, \"_draw_disabled\", nullcontext)():\n-\u003e 2342         self.figure.draw(renderer)\n   2344 if bbox_inches:\n   2345     if bbox_inches == \"tight\":\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:95](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=94), in _finalize_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer, *args, **kwargs)\n     93 @wraps(draw)\n     94 def draw_wrapper(artist, renderer, *args, **kwargs):\n---\u003e 95     result = draw(artist, renderer, *args, **kwargs)\n     96     if renderer._rasterizing:\n     97         renderer.stop_rasterizing()\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71), in allow_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer)\n     69     if artist.get_agg_filter() is not None:\n     70         renderer.start_filter()\n---\u003e 72     return draw(artist, renderer)\n     73 finally:\n     74     if artist.get_agg_filter() is not None:\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/figure.py:3140](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/figure.py#line=3139), in Figure.draw(self, renderer)\n   3137         # ValueError can occur when resizing a window.\n   3139 self.patch.draw(renderer)\n-\u003e 3140 mimage._draw_list_compositing_images(\n   3141     renderer, self, artists, self.suppressComposite)\n   3143 for sfig in self.subfigs:\n   3144     sfig.draw(renderer)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py:131](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py#line=130), in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)\n    129 if not_composite or not has_images:\n    130     for a in artists:\n--\u003e 131         a.draw(renderer)\n    132 else:\n    133     # Composite any adjacent images together\n    134     image_group = []\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:39](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=38), in _prevent_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer, *args, **kwargs)\n     36     renderer.stop_rasterizing()\n     37     renderer._rasterizing = False\n---\u003e 39 return draw(artist, renderer, *args, **kwargs)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/projections/polar.py:1037](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/projections/polar.py#line=1036), in PolarAxes.draw(self, renderer)\n   1034     self.yaxis.reset_ticks()\n   1035     self.yaxis.set_clip_path(self.patch)\n-\u003e 1037 super().draw(renderer)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71), in allow_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer)\n     69     if artist.get_agg_filter() is not None:\n     70         renderer.start_filter()\n---\u003e 72     return draw(artist, renderer)\n     73 finally:\n     74     if artist.get_agg_filter() is not None:\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/axes/_base.py:3064](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/axes/_base.py#line=3063), in _AxesBase.draw(self, renderer)\n   3061 if artists_rasterized:\n   3062     _draw_rasterized(self.figure, artists_rasterized, renderer)\n-\u003e 3064 mimage._draw_list_compositing_images(\n   3065     renderer, self, artists, self.figure.suppressComposite)\n   3067 renderer.close_group('axes')\n   3068 self.stale = False\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py:131](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py#line=130), in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)\n    129 if not_composite or not has_images:\n    130     for a in artists:\n--\u003e 131         a.draw(renderer)\n    132 else:\n    133     # Composite any adjacent images together\n    134     image_group = []\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71), in allow_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer)\n     69     if artist.get_agg_filter() is not None:\n     70         renderer.start_filter()\n---\u003e 72     return draw(artist, renderer)\n     73 finally:\n     74     if artist.get_agg_filter() is not None:\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/text.py:2032](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/text.py#line=2031), in Annotation.draw(self, renderer)\n   2030     if self.arrow_patch.figure is None and self.figure is not None:\n   2031         self.arrow_patch.figure = self.figure\n-\u003e 2032     self.arrow_patch.draw(renderer)\n   2033 # Draw text, including FancyBboxPatch, after FancyArrowPatch.\n   2034 # Otherwise, a wedge arrowstyle can land partly on top of the Bbox.\n   2035 Text.draw(self, renderer)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:39](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=38), in _prevent_rasterization.\u003clocals\u003e.draw_wrapper(artist, renderer, *args, **kwargs)\n     36     renderer.stop_rasterizing()\n     37     renderer._rasterizing = False\n---\u003e 39 return draw(artist, renderer, *args, **kwargs)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:4352](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=4351), in FancyArrowPatch.draw(self, renderer)\n   4348 # FIXME: dpi_cor is for the dpi-dependency of the linewidth.  There\n   4349 # could be room for improvement.  Maybe _get_path_in_displaycoord could\n   4350 # take a renderer argument, but get_path should be adapted too.\n   4351 self._dpi_cor = renderer.points_to_pixels(1.)\n-\u003e 4352 path, fillable = self._get_path_in_displaycoord()\n   4354 if not np.iterable(fillable):\n   4355     path = [path]\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:4327](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=4326), in FancyArrowPatch._get_path_in_displaycoord(self)\n   4325     posB = self._convert_xy_units(self._posA_posB[1])\n   4326     (posA, posB) = self.get_transform().transform((posA, posB))\n-\u003e 4327     _path = self.get_connectionstyle()(posA, posB,\n   4328                                        patchA=self.patchA,\n   4329                                        patchB=self.patchB,\n   4330                                        shrinkA=self.shrinkA * dpi_cor,\n   4331                                        shrinkB=self.shrinkB * dpi_cor\n   4332                                        )\n   4333 else:\n   4334     _path = self.get_transform().transform_path(self._path_original)\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:2732](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=2731), in ConnectionStyle._Base.__call__(self, posA, posB, shrinkA, shrinkB, patchA, patchB)\n   2726 path = self.connect(posA, posB)\n   2727 path = self._clip(\n   2728     path,\n   2729     self._in_patch(patchA) if patchA else None,\n   2730     self._in_patch(patchB) if patchB else None,\n   2731 )\n-\u003e 2732 path = self._clip(\n   2733     path,\n   2734     inside_circle(*path.vertices[0], shrinkA) if shrinkA else None,\n   2735     inside_circle(*path.vertices[-1], shrinkB) if shrinkB else None\n   2736 )\n   2737 return path\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:2710](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=2709), in ConnectionStyle._Base._clip(self, path, in_start, in_stop)\n   2708 if in_start:\n   2709     try:\n-\u003e 2710         _, path = split_path_inout(path, in_start)\n   2711     except ValueError:\n   2712         pass\n\nFile [~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/bezier.py:351](/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/bezier.py#line=350), in split_path_inout(path, inside, tolerance, reorder_inout)\n    348 from .path import Path\n    349 path_iter = path.iter_segments()\n--\u003e 351 ctl_points, command = next(path_iter)\n    352 begin_inside = inside(ctl_points[-2:])  # true if begin point is inside\n    354 ctl_points_old = ctl_points\n\nStopIteration:\n\n### Expected outcome\n\nEither a more descriptive error that the annotation arrow falls outside the axes limits or the image:\n![Image](https://github.com/user-attachments/assets/e4fbd5d9-8e85-4f9e-899e-bd15c8065192)\n\n### Additional information\n\nThis behaviour is quite erratic because the plot works fine if I 1) use different values for r, 2) comment the ax.set_rticks(...) line, 3) comment ax.annotate(...), 4) comment ax.scatter(an_theta, an_r), etc. The stacktrace seems to imply that the error occurs when the annotation arrow is being drawn.\n\n[Someone on SO](https://stackoverflow.com/questions/79382801/why-is-there-a-stopiteration-error-for-too-many-items-in-matplotlib-polar-plot?noredirect=1#comment139994674_79382801) suggested that the problem might be due to the Axes limits being set when setting the rticks. Indeed, `ax.set_rlim(0, 1)` produces the expected plot. However, I'd then expect `ax.set_rticks([0, 1, 2, 3])` to also make it work, but that does not seem to be the case.\n\n### Operating system\n\nAlmalinux 8.6\n\n### Matplotlib Version\n\n3.7.1\n\n### Matplotlib Backend\n\nmodule://matplotlib_inline.backend_inline\n\n### Python version\n\n3.11.4\n\n### Jupyter version\n\n4.2.5\n\n### Installation\n\nconda","author":{"url":"https://github.com/Valkje","@type":"Person","name":"Valkje"},"datePublished":"2025-01-24T17:28:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/29516/matplotlib/issues/29516"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:a171d65c-502b-3180-a250-4b2da4a18338
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAFA0:32604D:939349:C925B2:6A52011F
html-safe-nonceda8878302d9e3c413d8568007e151d83a27f59e7e47ad90f45b198690b89b878
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRkEwOjMyNjA0RDo5MzkzNDk6QzkyNUIyOjZBNTIwMTFGIiwidmlzaXRvcl9pZCI6IjY0OTE1MTY1NTMzODkwMTUzMjciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacfc1e09018e0cd4f5180b104e53bccdec2876a603729e5b1c384a90717297eb38
hovercard-subject-tagissue:2809973927
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/29516/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2a93108a69e96969ee236439dfd3bf32f6fbe46be0e859ddd10c084d54941aa4/matplotlib/matplotlib/issues/29516
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2a93108a69e96969ee236439dfd3bf32f6fbe46be0e859ddd10c084d54941aa4/matplotlib/matplotlib/issues/29516
og:image:altBug summary I am trying to create a polar plot of some data, with an annotation arrow pointing towards some other point in the plot. However, I get a StopIteration, presumably because of setting th...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameValkje
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/29516#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F29516
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%2F29516
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/29516
Reloadhttps://github.com/matplotlib/matplotlib/issues/29516
Reloadhttps://github.com/matplotlib/matplotlib/issues/29516
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29516
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/29516
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
[Bug]: Cannot draw arrow from polar plot origin after setting rtickshttps://github.com/matplotlib/matplotlib/issues/29516#top
status: confirmed bughttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22status%3A%20confirmed%20bug%22
topic: texthttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%22
https://github.com/Valkje
Valkjehttps://github.com/Valkje
on Jan 24, 2025https://github.com/matplotlib/matplotlib/issues/29516#issue-2809973927
~/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/formatters.py:340https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/formatters.py#line=339
~/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/pylabtools.py:152https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/IPython/core/pylabtools.py#line=151
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/backend_bases.py:2342https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/backend_bases.py#line=2341
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:95https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=94
@wrapshttps://github.com/wraps
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/figure.py:3140https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/figure.py#line=3139
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py:131https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py#line=130
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:39https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=38
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/projections/polar.py:1037https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/projections/polar.py#line=1036
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/axes/_base.py:3064https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/axes/_base.py#line=3063
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py:131https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/image.py#line=130
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:72https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=71
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/text.py:2032https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/text.py#line=2031
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py:39https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/artist.py#line=38
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:4352https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=4351
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:4327https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=4326
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:2732https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=2731
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py:2710https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/patches.py#line=2709
~/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/bezier.py:351https://github.com/home/preclineu/.conda/envs/graph_svd/lib/python3.11/site-packages/matplotlib/bezier.py#line=350
https://private-user-images.githubusercontent.com/26390653/406526802-e4fbd5d9-8e85-4f9e-899e-bd15c8065192.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM3NTk0MzUsIm5iZiI6MTc4Mzc1OTEzNSwicGF0aCI6Ii8yNjM5MDY1My80MDY1MjY4MDItZTRmYmQ1ZDktOGU4NS00ZjllLTg5OWUtYmQxNWM4MDY1MTkyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDA4Mzg1NVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWU1NjRlOWNhZTk0Mzc4NzhlYmNhMGVmNGIxZDI2YTRhMDI0MDNlZDg5NzIyZmUxNDY0YTI0MTBjZWI3ZWVjYmMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.dvOCaBspkwV2ciUQbFrvnjH8SMFxEDiBhSNB93_Ot-g
Someone on SOhttps://stackoverflow.com/questions/79382801/why-is-there-a-stopiteration-error-for-too-many-items-in-matplotlib-polar-plot?noredirect=1#comment139994674_79382801
status: confirmed bughttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22status%3A%20confirmed%20bug%22
topic: texthttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%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.