René's URL Explorer Experiment


Title: [Bug]: Theme properties are not properly forwarded to xkcd plot · Issue #27791 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: Theme properties are not properly forwarded to xkcd plot · Issue #27791 · matplotlib/matplotlib

X Title: [Bug]: Theme properties are not properly forwarded to xkcd plot · Issue #27791 · matplotlib/matplotlib

Description: Bug summary Some theme properties are not properly forwarded to xkcd plot. Also, the displayed figure is not identical to the one saved. Code for reproduction import matplotlib.pyplot as plt import numpy as np from matplotlib import path...

Open Graph Description: Bug summary Some theme properties are not properly forwarded to xkcd plot. Also, the displayed figure is not identical to the one saved. Code for reproduction import matplotlib.pyplot as plt import...

X Description: Bug summary Some theme properties are not properly forwarded to xkcd plot. Also, the displayed figure is not identical to the one saved. Code for reproduction import matplotlib.pyplot as plt import...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: Theme properties are not properly forwarded to xkcd plot","articleBody":"### Bug summary\r\n\r\nSome theme properties are not properly forwarded to `xkcd` plot.\r\n\r\nAlso, the displayed figure is not identical to the one saved.\r\n\r\n### Code for reproduction\r\n\r\n```python\r\nimport matplotlib.pyplot as plt\r\nimport numpy as np\r\nfrom matplotlib import patheffects\r\n\r\nplt.style.use([\"dark_background\"])\r\n\r\n\r\ndef make_figure():\r\n    fig = plt.figure()\r\n    ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\r\n    ax.spines[[\"top\", \"right\"]].set_visible(False)\r\n    ax.set_xticks([])\r\n    ax.set_yticks([])\r\n    ax.set_ylim([-30, 10])\r\n\r\n    data = np.ones(100)\r\n    data[70:] -= np.arange(30)\r\n\r\n    ax.annotate(\r\n        \"THE DAY I REALIZED\\nI COULD COOK BACON\\nWHENEVER I WANTED\",\r\n        xy=(70, 1),\r\n        arrowprops=dict(arrowstyle=\"-\u003e\"),\r\n        xytext=(15, -10),\r\n    )\r\n\r\n    ax.plot(data)\r\n\r\n    ax.set_xlabel(\"time\")\r\n    ax.set_ylabel(\"my overall health\")\r\n    fig.text(0.5, 0.05, '\"Stove Ownership\" from xkcd by Randall Munroe', ha=\"center\")\r\n\r\n\r\nwith plt.xkcd():\r\n    # This figure will be in XKCD-style\r\n    make_figure()\r\n    # ...\r\n\r\n# This figure will be in regular style\r\nmake_figure()\r\n\r\nplt.show()\r\n```\r\n\r\n\r\n### Actual outcome\r\n\r\n# Shown figures\r\n![image](https://github.com/matplotlib/matplotlib/assets/48522112/5487583c-c028-4823-a739-bcf629644001)\r\n\r\n\r\n# Saved figures\r\n![xkcd_fig](https://github.com/matplotlib/matplotlib/assets/48522112/58f9eb8b-9671-4cfa-b15a-7b0b756445cf)\r\n![regular_fig](https://github.com/matplotlib/matplotlib/assets/48522112/9e1fd188-4c18-4adc-96fb-f4d148300d1e)\r\n\r\n\r\n### Expected outcome\r\n\r\nBy updating the relevant `rcparams` _**after**_ the `plt.xkcd()` call, I can update the figure properly :\r\n\r\n```python\r\nimport matplotlib.pyplot as plt\r\nimport numpy as np\r\nfrom matplotlib import patheffects\r\n\r\nplt.style.use([\"dark_background\"])\r\n\r\n\r\ndef make_figure(type):\r\n    fig = plt.figure()\r\n    ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\r\n    ax.spines[[\"top\", \"right\"]].set_visible(False)\r\n    ax.set_xticks([])\r\n    ax.set_yticks([])\r\n    ax.set_ylim([-30, 10])\r\n\r\n    data = np.ones(100)\r\n    data[70:] -= np.arange(30)\r\n\r\n    ax.annotate(\r\n        \"THE DAY I REALIZED\\nI COULD COOK BACON\\nWHENEVER I WANTED\",\r\n        xy=(70, 1),\r\n        arrowprops=dict(arrowstyle=\"-\u003e\"),\r\n        xytext=(15, -10),\r\n    )\r\n\r\n    ax.plot(data)\r\n\r\n    ax.set_xlabel(\"time\")\r\n    ax.set_ylabel(\"my overall health\")\r\n    fig.text(0.5, 0.05, f\"{type} type of figure\", ha=\"center\")\r\n\r\n\r\nwith plt.xkcd():\r\n    # This figure will be in XKCD-style\r\n    plt.rcParams[\"path.effects\"] = [patheffects.withStroke(linewidth=0)]\r\n    plt.rcParams[\"figure.facecolor\"] = \"black\"\r\n    plt.rcParams[\"axes.edgecolor\"] = \"white\"\r\n    make_figure(\"xkcd\")\r\n    # ...\r\nplt.savefig(\"xkcd_fig.png\")\r\n\r\n# This figure will be in regular style\r\nmake_figure(\"regular\")\r\nplt.savefig(\"regular_fig.png\")\r\n\r\n\r\nplt.show()\r\n```\r\n\r\n# shown figures\r\n![image](https://github.com/matplotlib/matplotlib/assets/48522112/84e9b884-aa05-47ac-af65-d1dc707f166c)\r\n\r\n# saved figures\r\n![regular_fig](https://github.com/matplotlib/matplotlib/assets/48522112/8ffa8ee0-7d62-4b07-b8a0-2577a9b12250)\r\n![xkcd_fig](https://github.com/matplotlib/matplotlib/assets/48522112/024b4db8-3840-4568-8b16-6929b4928c5b)\r\n\r\nEDIT: moving the `plt.style.use(\"dark_background\")` result in a mix between the `rcparams` of the used style, and the ones imposed by `xkcd`:\r\n\r\n```\r\nwith plt.xkcd():\r\n    plt.style.use([\"dark_background\"])\r\n    # This figure will be in XKCD-style\r\n    make_figure(\"xkcd_black\")\r\n    # ...\r\nplt.savefig(\"xkcd_fig.png\")\r\n```\r\n![xkcd_fig](https://github.com/matplotlib/matplotlib/assets/48522112/fddf8e0c-bc8b-4f67-a76f-a52c68086d3c)\r\n\r\n\r\n### Additional information\r\n\r\nBased on this [issue](https://stackoverflow.com/questions/50845646/matplotlib-xkcd-and-black-figure-background) on stackoverflow.\r\n\r\n### Operating system\r\n\r\nUbuntu 22.04\r\n\r\n### Matplotlib Version\r\n\r\n3.8.2\r\n\r\n### Matplotlib Backend\r\n\r\nQTAgg\r\n\r\n### Python version\r\n\r\n3.10.12\r\n\r\n### Jupyter version\r\n\r\n_No response_\r\n\r\n### Installation\r\n\r\npip","author":{"url":"https://github.com/cgadal","@type":"Person","name":"cgadal"},"datePublished":"2024-02-14T14:08:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/27791/matplotlib/issues/27791"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f3beccf5-4174-216f-bcac-e51d893e867b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCB0E:1A59AA:10AF0:154AD:6A52B35A
html-safe-noncef5461cf924e3e289902ba035747263629774c9f3b598b8a676dfa4d4b333d671
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQjBFOjFBNTlBQToxMEFGMDoxNTRBRDo2QTUyQjM1QSIsInZpc2l0b3JfaWQiOiI3MTQ2MjUxNDg2OTM0MjUwMzMwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac6d97080ccfb0617df62e6770950bbea02996ac5667f4af292b06cad5ca532be8
hovercard-subject-tagissue:2134440084
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/27791/issue_layout
twitter:imagehttps://opengraph.githubassets.com/36f0e256407c30e386cec82dcd4acdcb9570a4726c8df2cef92efa246894935a/matplotlib/matplotlib/issues/27791
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/36f0e256407c30e386cec82dcd4acdcb9570a4726c8df2cef92efa246894935a/matplotlib/matplotlib/issues/27791
og:image:altBug summary Some theme properties are not properly forwarded to xkcd plot. Also, the displayed figure is not identical to the one saved. Code for reproduction import matplotlib.pyplot as plt import...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamecgadal
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/27791#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F27791
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%2F27791
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/27791
Reloadhttps://github.com/matplotlib/matplotlib/issues/27791
Reloadhttps://github.com/matplotlib/matplotlib/issues/27791
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/27791
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/27791
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]: Theme properties are not properly forwarded to xkcd plothttps://github.com/matplotlib/matplotlib/issues/27791#top
https://github.com/cgadal
cgadalhttps://github.com/cgadal
on Feb 14, 2024https://github.com/matplotlib/matplotlib/issues/27791#issue-2134440084
https://private-user-images.githubusercontent.com/48522112/304757531-5487583c-c028-4823-a739-bcf629644001.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTc1MzEtNTQ4NzU4M2MtYzAyOC00ODIzLWE3MzktYmNmNjI5NjQ0MDAxLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWMzMzUwYWNjZGE5ZmIxZDRlMmNmMjU0YTc5NjFlZWRlMGZkNDI1MGJiY2U1YjQyMGJjMWVhZTdjN2JlZjU1ZGQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.qra6X-TBfGUTCb-IqCOBt5KbhMfPySGOOAaPh5DFMso
https://private-user-images.githubusercontent.com/48522112/304756881-58f9eb8b-9671-4cfa-b15a-7b0b756445cf.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTY4ODEtNThmOWViOGItOTY3MS00Y2ZhLWIxNWEtN2IwYjc1NjQ0NWNmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTVmMjViZDUwZDcyYjU3NDk5ZGIwOTFhNjQ4ZTZlY2E1MDI3MTNkZDFmY2QwYjdjYTYwMWYyZmRjYjM0ODZlMmEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.ucYF_ZTbDTp-mZ7rAf6pgXJmB1UYX-w9r1-Jl00a70c
https://private-user-images.githubusercontent.com/48522112/304756894-9e1fd188-4c18-4adc-96fb-f4d148300d1e.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTY4OTQtOWUxZmQxODgtNGMxOC00YWRjLTk2ZmItZjRkMTQ4MzAwZDFlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWVhZjQ3ZDIwOGFiNDI0ZjgxM2Y5ZmM5MDQyMTUxMTk0ZmJlMTRjYzRiOTJlYmQ3OGZiZDA1ZGQ3NTc5ODYwMDkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.J7jqo2xGeYlLGcidHlCcg1YAJbfAi85D9cpCSRhdkBY
https://private-user-images.githubusercontent.com/48522112/304758019-84e9b884-aa05-47ac-af65-d1dc707f166c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTgwMTktODRlOWI4ODQtYWEwNS00N2FjLWFmNjUtZDFkYzcwN2YxNjZjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTZmODYwZmVhZDQ4MzFmMzRiZjRkNjY0OTQ0ZjEyNTI1NGEyOWI1M2ZhYjMwNWYwMmQ4ZWIwMmRiZWRkNmM5NjkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.ge-cjm2-WJgZYZr36aP303ucC8TWDv1QTTuEJiOwfko
https://private-user-images.githubusercontent.com/48522112/304758106-8ffa8ee0-7d62-4b07-b8a0-2577a9b12250.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTgxMDYtOGZmYThlZTAtN2Q2Mi00YjA3LWI4YTAtMjU3N2E5YjEyMjUwLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPThlNmY2ZjJhMDIyNzVjN2UzOGY5MWFiYTM1MThkZjQzMjEzNWExYzkyNjA0YzEwYzU2MWZmMmU2YWE2YmJlNTMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.bNU9oXso2lxVu3upuKwQBb95Fb8F_dK6EJaxcBYGtNo
https://private-user-images.githubusercontent.com/48522112/304758116-024b4db8-3840-4568-8b16-6929b4928c5b.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NTgxMTYtMDI0YjRkYjgtMzg0MC00NTY4LThiMTYtNjkyOWI0OTI4YzViLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTZjYTc1NDY3ZGNmNDdhZjJhYzViN2U0NTVhYTg3MDU1ODkxMzQ0MzhiN2E4NjAxYmI4MzYzZWE3YzM4M2QwMTQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.HHyiqa_TPsmAhkWFL59EhssPmAL0YkojTFiqhdmplSc
https://private-user-images.githubusercontent.com/48522112/304765621-fddf8e0c-bc8b-4f67-a76f-a52c68086d3c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM4MDUwNjIsIm5iZiI6MTc4MzgwNDc2MiwicGF0aCI6Ii80ODUyMjExMi8zMDQ3NjU2MjEtZmRkZjhlMGMtYmM4Yi00ZjY3LWE3NmYtYTUyYzY4MDg2ZDNjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzExVDIxMTkyMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPThmYWNlMjhkMTY2ODMwZmQ2ZDU3Y2NjODZmNTBjMzhmYTM1NjJlNDZlMGE0M2JiNjNkNzE1ZGVhZTYwMTRkZjgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.qxGAkgv37Zwx-2I4BdOSpJmLZAIWnsaDFGbwLXiv5_0
issuehttps://stackoverflow.com/questions/50845646/matplotlib-xkcd-and-black-figure-background
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.