René's URL Explorer Experiment


Title: [Bug]: AttributeError: 'NoneType' object has no attribute 'rowspan' with mpl >=3.7 · Issue #25538 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: AttributeError: 'NoneType' object has no attribute 'rowspan' with mpl >=3.7 · Issue #25538 · matplotlib/matplotlib

X Title: [Bug]: AttributeError: 'NoneType' object has no attribute 'rowspan' with mpl >=3.7 · Issue #25538 · matplotlib/matplotlib

Description: Bug summary With mpl <3.7 this code works the code snippet below works but it is broken in 3.7.0 and 3.7.1. The odd thing is that if I move the colorbar to the last line or if I don't use pandas to the the C plotting it works just fine. ...

Open Graph Description: Bug summary With mpl <3.7 this code works the code snippet below works but it is broken in 3.7.0 and 3.7.1. The odd thing is that if I move the colorbar to the last line or if I don't use pandas to...

X Description: Bug summary With mpl <3.7 this code works the code snippet below works but it is broken in 3.7.0 and 3.7.1. The odd thing is that if I move the colorbar to the last line or if I don't use pa...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: AttributeError: 'NoneType' object has no attribute 'rowspan' with mpl \u003e=3.7","articleBody":"### Bug summary\n\nWith mpl \u003c3.7 this code works the code snippet below works but it is broken in 3.7.0 and 3.7.1. The odd thing is that if I move the colorbar to the last line or if I don't use pandas to the the `C` plotting it works just fine. I guess there is a bad interaction somewhere that is messing up with the subplots.\n\n### Code for reproduction\n\n```python\nimport matplotlib.pyplot as plt\r\nimport pandas as pd\r\n\r\nfig = plt.figure()\r\n\r\naxes = fig.subplot_mosaic(\r\n    \"\"\"\r\n    AB\r\n    CC\r\n    \"\"\"\r\n)\r\n\r\nx = [1, 2, 3]\r\ny = [1, 2, 3]\r\n\r\ncs0 = axes[\"A\"].scatter(x, y)\r\ncs1 = axes[\"B\"].scatter(x, y)\r\n\r\nfig.colorbar(cs0, ax=[axes[\"A\"], axes[\"B\"]], location=\"right\")\r\naxes[\"C\"].plot(x)\r\npd.DataFrame(x).plot(ax=axes[\"C\"])\n```\n\n\n### Actual outcome\n\n```\r\nAttributeError                            Traceback (most recent call last)\r\nCell In[10], line 21\r\n     19 fig.colorbar(cs0, ax=[axes[\"A\"], axes[\"B\"]], location=\"right\")\r\n     20 axes[\"C\"].plot(x)\r\n---\u003e 21 pd.DataFrame(x).plot(ax=axes[\"C\"])\r\n     22 # fig.colorbar(cs0, ax=[axes[\"A\"], axes[\"B\"]], location=\"right\")\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_core.py:1000, in PlotAccessor.__call__(self, *args, **kwargs)\r\n    997             label_name = label_kw or data.columns\r\n    998             data.columns = label_name\r\n-\u003e 1000 return plot_backend.plot(data, kind=kind, **kwargs)\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_matplotlib/__init__.py:71, in plot(data, kind, **kwargs)\r\n     69         kwargs[\"ax\"] = getattr(ax, \"left_ax\", ax)\r\n     70 plot_obj = PLOT_CLASSES[kind](data, **kwargs)\r\n---\u003e 71 plot_obj.generate()\r\n     72 plot_obj.draw()\r\n     73 return plot_obj.result\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_matplotlib/core.py:455, in MPLPlot.generate(self)\r\n    453 self._add_table()\r\n    454 self._make_legend()\r\n--\u003e 455 self._adorn_subplots()\r\n    457 for ax in self.axes:\r\n    458     self._post_plot_logic_common(ax, self.data)\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_matplotlib/core.py:679, in MPLPlot._adorn_subplots(self)\r\n    677     all_axes = self._get_subplots()\r\n    678     nrows, ncols = self._get_axes_layout()\r\n--\u003e 679     handle_shared_axes(\r\n    680         axarr=all_axes,\r\n    681         nplots=len(all_axes),\r\n    682         naxes=nrows * ncols,\r\n    683         nrows=nrows,\r\n    684         ncols=ncols,\r\n    685         sharex=self.sharex,\r\n    686         sharey=self.sharey,\r\n    687     )\r\n    689 for ax in self.axes:\r\n    690     ax = getattr(ax, \"right_ax\", ax)\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_matplotlib/tools.py:410, in handle_shared_axes(axarr, nplots, naxes, nrows, ncols, sharex, sharey)\r\n    408 layout = np.zeros((nrows + 1, ncols + 1), dtype=np.bool_)\r\n    409 for ax in axarr:\r\n--\u003e 410     layout[row_num(ax), col_num(ax)] = ax.get_visible()\r\n    412 for ax in axarr:\r\n    413     # only the last row of subplots should get x labels -\u003e all\r\n    414     # other off layout handles the case that the subplot is\r\n    415     # the last in the column, because below is no subplot/gap.\r\n    416     if not layout[row_num(ax) + 1, col_num(ax)]:\r\n\r\nFile ~/micromamba/envs/TEST/lib/python3.11/site-packages/pandas/plotting/_matplotlib/tools.py:396, in handle_shared_axes.\u003clocals\u003e.\u003clambda\u003e(x)\r\n    386 def handle_shared_axes(\r\n    387     axarr: Iterable[Axes],\r\n    388     nplots: int,\r\n   (...)\r\n    393     sharey: bool,\r\n    394 ):\r\n    395     if nplots \u003e 1:\r\n--\u003e 396         row_num = lambda x: x.get_subplotspec().rowspan.start\r\n    397         col_num = lambda x: x.get_subplotspec().colspan.start\r\n    399         if compat.mpl_ge_3_4_0():\r\n\r\nAttributeError: 'NoneType' object has no attribute 'rowspan'\r\n```\n\n### Expected outcome\n\n![Screenshot from 2023-03-23 15-21-12](https://user-images.githubusercontent.com/950575/227310711-a33f7cfa-19c8-412a-872c-840f4b51ac5a.png)\n\n### Additional information\n\n_No response_\n\n### Operating system\n\n_No response_\n\n### Matplotlib Version\n\n3.7.0 and 3.7.1\n\n### Matplotlib Backend\n\nmodule://matplotlib_inline.backend_inline\n\n### Python version\n\n3.11\n\n### Jupyter version\n\n6.5.3\n\n### Installation\n\nconda","author":{"url":"https://github.com/ocefpaf","@type":"Person","name":"ocefpaf"},"datePublished":"2023-03-23T18:23:13.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/25538/matplotlib/issues/25538"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:26287bfa-397a-d3a1-638f-606a6b04ecc2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB402:C1E1E:E42FDA:132753C:6A5290ED
html-safe-nonce3082fc9198e96cb3d24f15c694a0e174dde665d51f8dbfede9460194af31099d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNDAyOkMxRTFFOkU0MkZEQToxMzI3NTNDOjZBNTI5MEVEIiwidmlzaXRvcl9pZCI6IjY5NjM2NDc2ODgxNjk2NTY1NTciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac73399be7e181f6e507dbb3bcfefcbcedca37927da194b059687fea0a71e41773
hovercard-subject-tagissue:1638075419
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/25538/issue_layout
twitter:imagehttps://opengraph.githubassets.com/55452ffc0e948c417ddd8a044eb49061cb75f6c99eee84d01b0dbf29070d07c4/matplotlib/matplotlib/issues/25538
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/55452ffc0e948c417ddd8a044eb49061cb75f6c99eee84d01b0dbf29070d07c4/matplotlib/matplotlib/issues/25538
og:image:altBug summary With mpl <3.7 this code works the code snippet below works but it is broken in 3.7.0 and 3.7.1. The odd thing is that if I move the colorbar to the last line or if I don't use pandas to...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameocefpaf
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
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/25538#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F25538
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%2F25538
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/25538
Reloadhttps://github.com/matplotlib/matplotlib/issues/25538
Reloadhttps://github.com/matplotlib/matplotlib/issues/25538
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/25538
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/25538
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
[Bug]: AttributeError: 'NoneType' object has no attribute 'rowspan' with mpl >=3.7https://github.com/matplotlib/matplotlib/issues/25538#top
status: downstream fix requiredhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22status%3A%20downstream%20fix%20required%22
https://github.com/ocefpaf
ocefpafhttps://github.com/ocefpaf
on Mar 23, 2023https://github.com/matplotlib/matplotlib/issues/25538#issue-1638075419
https://user-images.githubusercontent.com/950575/227310711-a33f7cfa-19c8-412a-872c-840f4b51ac5a.png
status: downstream fix requiredhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22status%3A%20downstream%20fix%20required%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.