René's URL Explorer Experiment


Title: [Bug]: stem complaining about PyTorch's Tensor · Issue #30216 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: stem complaining about PyTorch's Tensor · Issue #30216 · matplotlib/matplotlib

X Title: [Bug]: stem complaining about PyTorch's Tensor · Issue #30216 · matplotlib/matplotlib

Description: Bug summary stem breaks when I specify the horizontal components with a PyTorch Tensor. Code for reproduction import torch from matplotlib import pyplot as plt x = torch.arange(10.) y = (x * .2 * torch.pi).sin() plt.plot(x, y) # works pl...

Open Graph Description: Bug summary stem breaks when I specify the horizontal components with a PyTorch Tensor. Code for reproduction import torch from matplotlib import pyplot as plt x = torch.arange(10.) y = (x * .2 * t...

X Description: Bug summary stem breaks when I specify the horizontal components with a PyTorch Tensor. Code for reproduction import torch from matplotlib import pyplot as plt x = torch.arange(10.) y = (x * .2 * t...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: stem complaining about PyTorch's Tensor","articleBody":"### Bug summary\n\n`stem` breaks when I specify the horizontal components with a PyTorch Tensor.\n\n### Code for reproduction\n\n```Python\nimport torch\nfrom matplotlib import pyplot as plt\n\nx = torch.arange(10.)\ny = (x * .2 * torch.pi).sin()\nplt.plot(x, y)  # works\nplt.stem(x, y)  # breaks\nplt.stem(x.numpy(), y)  # works\n```\n\n### Actual outcome\n\n```python\nTypeError: min() received an invalid combination of arguments - got (out=NoneType, axis=NoneType, ), but expected one of:\n * ()\n * (Tensor other)\n * (int dim, bool keepdim = False)\n      didn't match because some of the keywords were incorrect: out, axis\n * (name dim, bool keepdim = False)\n      didn't match because some of the keywords were incorrect: out, axis\n```\n\n\u003cdetails\u003e\u003csummary\u003eFull traceback\u003c/summary\u003e\n\u003cp\u003e\n\n```python\n---------------------------------------------------------------------------\nTypeError                                 Traceback (most recent call last)\nCell In[50], line 7\n      5 y = (x * .2 * torch.pi).sin()\n      6 plt.plot(x, y)  # works\n----\u003e 7 plt.stem(x, y)  # breaks\n      8 plt.stem(x.numpy(), y)  # works\n\nFile [/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/pyplot.py:4085](http://localhost:8888/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/pyplot.py#line=4084), in stem(linefmt, markerfmt, basefmt, bottom, label, orientation, data, *args)\n   4074 @_copy_docstring_and_deprecators(Axes.stem)\n   4075 def stem(\n   4076     *args: ArrayLike | str,\n   (...)   4083     data=None,\n   4084 ) -\u003e StemContainer:\n-\u003e 4085     return gca().stem(\n   4086         *args,\n   4087         linefmt=linefmt,\n   4088         markerfmt=markerfmt,\n   4089         basefmt=basefmt,\n   4090         bottom=bottom,\n   4091         label=label,\n   4092         orientation=orientation,\n   4093         **({\"data\": data} if data is not None else {}),\n   4094     )\n\nFile [/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/__init__.py:1521](http://localhost:8888/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/__init__.py#line=1520), in _preprocess_data.\u003clocals\u003e.inner(ax, data, *args, **kwargs)\n   1518 @functools.wraps(func)\n   1519 def inner(ax, *args, data=None, **kwargs):\n   1520     if data is None:\n-\u003e 1521         return func(\n   1522             ax,\n   1523             *map(cbook.sanitize_sequence, args),\n   1524             **{k: cbook.sanitize_sequence(v) for k, v in kwargs.items()})\n   1526     bound = new_sig.bind(ax, *args, **kwargs)\n   1527     auto_label = (bound.arguments.get(label_namer)\n   1528                   or bound.kwargs.get(label_namer))\n\nFile [/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/axes/_axes.py:3216](http://localhost:8888/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/matplotlib/axes/_axes.py#line=3215), in Axes.stem(self, linefmt, markerfmt, basefmt, bottom, label, orientation, *args)\n   3214     marker_x = locs\n   3215     marker_y = heads\n-\u003e 3216     baseline_x = [np.min(locs), np.max(locs)]\n   3217     baseline_y = [bottom, bottom]\n   3219 markerline, = self.plot(marker_x, marker_y,\n   3220                         color=markercolor, linestyle=markerstyle,\n   3221                         marker=markermarker, label=\"_nolegend_\")\n\nFile [/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/numpy/_core/fromnumeric.py:3301](http://localhost:8888/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/numpy/_core/fromnumeric.py#line=3300), in min(a, axis, out, keepdims, initial, where)\n   3189 @array_function_dispatch(_min_dispatcher)\n   3190 def min(a, axis=None, out=None, keepdims=np._NoValue, initial=np._NoValue,\n   3191         where=np._NoValue):\n   3192     \"\"\"\n   3193     Return the minimum of an array or minimum along an axis.\n   3194 \n   (...)   3299     6\n   3300     \"\"\"\n-\u003e 3301     return _wrapreduction(a, np.minimum, 'min', axis, None, out,\n   3302                           keepdims=keepdims, initial=initial, where=where)\n\nFile [/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/numpy/_core/fromnumeric.py:84](http://localhost:8888/opt/homebrew/Caskroom/miniconda/base/envs/book/lib/python3.13/site-packages/numpy/_core/fromnumeric.py#line=83), in _wrapreduction(obj, ufunc, method, axis, dtype, out, **kwargs)\n     82             return reduction(axis=axis, dtype=dtype, out=out, **passkwargs)\n     83         else:\n---\u003e 84             return reduction(axis=axis, out=out, **passkwargs)\n     86 return ufunc.reduce(obj, axis, dtype, out, **passkwargs)\n\nTypeError: min() received an invalid combination of arguments - got (out=NoneType, axis=NoneType, ), but expected one of:\n * ()\n * (Tensor other)\n * (int dim, bool keepdim = False)\n      didn't match because some of the keywords were incorrect: out, axis\n * (name dim, bool keepdim = False)\n      didn't match because some of the keywords were incorrect: out, axis\n```\n\n\u003c/p\u003e\n\u003c/details\u003e \n\n### Expected outcome\n\nMost of the time, matplotlib is capable of plotting tensors without issues.\n\n### Additional information\n\nPyTorch version: 2.7.0\n\n### Operating system\n\n_No response_\n\n### Matplotlib Version\n\n3.10.3\n\n### Matplotlib Backend\n\nmodule://matplotlib_inline.backend_inline\n\n### Python version\n\n3.13.5\n\n### Jupyter version\n\n4.4.3\n\n### Installation\n\nconda","author":{"url":"https://github.com/Atcold","@type":"Person","name":"Atcold"},"datePublished":"2025-06-25T21:01:29.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":6},"url":"https://github.com/30216/matplotlib/issues/30216"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:2f8e9dac-b9f2-2841-3de5-9ff92b868237
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9452:15606D:7CFE33:A7ACC2:6A51A80D
html-safe-nonceff4c80f8c6b6ab40d80e2be32d4ec9a0a0a1f2e2460f93a18dc6c87fd5d1ef5b
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NDUyOjE1NjA2RDo3Q0ZFMzM6QTdBQ0MyOjZBNTFBODBEIiwidmlzaXRvcl9pZCI6Ijc4MDU2MDYzMzIxMTYwODQ3NDkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac010bedcad9fab3e9fa4f4d967abc095e25b9a327f124d67b89931c8dde92668b
hovercard-subject-tagissue:3176953919
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/30216/issue_layout
twitter:imagehttps://opengraph.githubassets.com/d3d7b1f0f8f898c2b9d1f6286078f8c3bb16de10a21376f8e883af2085e29093/matplotlib/matplotlib/issues/30216
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/d3d7b1f0f8f898c2b9d1f6286078f8c3bb16de10a21376f8e883af2085e29093/matplotlib/matplotlib/issues/30216
og:image:altBug summary stem breaks when I specify the horizontal components with a PyTorch Tensor. Code for reproduction import torch from matplotlib import pyplot as plt x = torch.arange(10.) y = (x * .2 * t...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameAtcold
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/30216#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F30216
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%2F30216
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/30216
Reloadhttps://github.com/matplotlib/matplotlib/issues/30216
Reloadhttps://github.com/matplotlib/matplotlib/issues/30216
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/30216
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/30216
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
#30233https://github.com/matplotlib/matplotlib/pull/30233
[Bug]: stem complaining about PyTorch's Tensorhttps://github.com/matplotlib/matplotlib/issues/30216#top
#30233https://github.com/matplotlib/matplotlib/pull/30233
third-party integrationhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22third-party%20integration%22
topic: stemhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20stem%22
v3.10.5https://github.com/matplotlib/matplotlib/milestone/102
https://github.com/Atcold
Atcoldhttps://github.com/Atcold
on Jun 25, 2025https://github.com/matplotlib/matplotlib/issues/30216#issue-3176953919
third-party integrationhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22third-party%20integration%22
topic: stemhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20stem%22
v3.10.5https://github.com/matplotlib/matplotlib/milestone/102
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.