{"id":2271,"date":"2023-07-22T23:59:54","date_gmt":"2023-07-22T23:59:54","guid":{"rendered":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/"},"modified":"2023-07-22T23:59:54","modified_gmt":"2023-07-22T23:59:54","slug":"pozycja-legendy-matplotlib","status":"publish","type":"post","link":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/","title":{"rendered":"Jak zmieni\u0107 pozycj\u0119 legendy w matplotlib"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Aby zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, mo\u017cesz u\u017cy\u0107 funkcji <strong>plt.legend()<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Na przyk\u0142ad mo\u017cesz u\u017cy\u0107 nast\u0119puj\u0105cej sk\u0142adni, aby umie\u015bci\u0107 legend\u0119 w lewym g\u00f3rnym rogu wykresu:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>plt. <span style=\"color: #3366ff;\">legend<\/span> (loc=' <span style=\"color: #ff0000;\">upper left<\/span> ')\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Domy\u015blna lokalizacja to \u201enajlepsza\u201d \u2013 w tym miejscu Matplotlib automatycznie znajduje lokalizacj\u0119 legendy na podstawie miejsc, w kt\u00f3rych unika zakrycia punkt\u00f3w danych.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Mo\u017cna jednak okre\u015bli\u0107 jedn\u0105 z nast\u0119puj\u0105cych lokalizacji napis\u00f3w:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">W prawym g\u00f3rnym rogu<\/span><\/li>\n<li> <span style=\"color: #000000;\">w lewym g\u00f3rnym rogu<\/span><\/li>\n<li> <span style=\"color: #000000;\">w lewym dolnym rogu<\/span><\/li>\n<li> <span style=\"color: #000000;\">w prawym dolnym rogu<\/span><\/li>\n<li> <span style=\"color: #000000;\">PRAWID\u0141OWY<\/span><\/li>\n<li> <span style=\"color: #000000;\">\u015brodkowy lewy<\/span><\/li>\n<li> <span style=\"color: #000000;\">Centroprawica<\/span><\/li>\n<li> <span style=\"color: #000000;\">dolny \u015brodek<\/span><\/li>\n<li> <span style=\"color: #000000;\">g\u00f3rny \u015brodek<\/span><\/li>\n<li> <span style=\"color: #000000;\">Centrum<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Mo\u017cesz tak\u017ce u\u017cy\u0107 argumentu <strong>bbox_to_anchor()<\/strong> , aby umie\u015bci\u0107 legend\u0119 poza wykresem. Na przyk\u0142ad mo\u017cesz u\u017cy\u0107 nast\u0119puj\u0105cej sk\u0142adni, aby umie\u015bci\u0107 legend\u0119 w prawym g\u00f3rnym rogu poza wykresem:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>plt. <span style=\"color: #3366ff;\">legend<\/span> (bbox_to_anchor=( <span style=\"color: #008000;\">1.05<\/span> , <span style=\"color: #008000;\">1<\/span> ), loc=' <span style=\"color: #ff0000;\">upper left<\/span> ', borderaxespad= <span style=\"color: #008000;\">0<\/span> )\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Poni\u017csze przyk\u0142ady pokazuj\u0105, jak zastosowa\u0107 ka\u017cd\u0105 z tych metod w praktyce.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Przyk\u0142ad 1: zmie\u0144 po\u0142o\u017cenie legendy na wykresie Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Poni\u017cszy kod pokazuje, jak umie\u015bci\u0107 legend\u0119 w prawej \u015brodkowej cz\u0119\u015bci wykresu liniowego Matplotlib:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createdata\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">points<\/span> ': [11, 17, 16, 18, 22, 25, 26, 24, 29],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4, 8]})\n\n<span style=\"color: #008080;\">#add lines to plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">points<\/span> '], label=' <span style=\"color: #ff0000;\">Points<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">assists<\/span> '], label=' <span style=\"color: #ff0000;\">Assists<\/span> ', color=' <span style=\"color: #ff0000;\">steelblue<\/span> ')\n\n<span style=\"color: #008080;\">#place legend in center right of plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> (loc=' <span style=\"color: #ff0000;\">center right<\/span> ', title=' <span style=\"color: #ff0000;\">Metric<\/span> ')<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20707 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position11.png\" alt=\"\" width=\"510\" height=\"335\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Poni\u017cszy kod pokazuje, jak umie\u015bci\u0107 legend\u0119 w lewym g\u00f3rnym rogu wykresu Matplotlib:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#create data\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">points<\/span> ': [11, 17, 16, 18, 22, 25, 26, 24, 29],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4, 8]})\n\n<span style=\"color: #008080;\">#add lines to plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">points<\/span> '], label=' <span style=\"color: #ff0000;\">Points<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">assists<\/span> '], label=' <span style=\"color: #ff0000;\">Assists<\/span> ', color=' <span style=\"color: #ff0000;\">steelblue<\/span> ')\n\n<span style=\"color: #008080;\">#place legend in center right of plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> (loc=' <span style=\"color: #ff0000;\">upper left<\/span> ', title=' <span style=\"color: #ff0000;\">Metric<\/span> ')<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20708 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position12.png\" alt=\"\" width=\"511\" height=\"342\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Przyk\u0142ad 2: Zmie\u0144 po\u0142o\u017cenie legendy poza wykresem Matplotlib<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Aby umie\u015bci\u0107 legend\u0119 poza wykresem Matplotlib, mo\u017cemy u\u017cy\u0107 argumentu <strong>bbox_to_anchor()<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Na przyk\u0142ad, oto jak umie\u015bci\u0107 legend\u0119 poza prawym g\u00f3rnym rogiem wykresu:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#create data\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">points<\/span> ': [11, 17, 16, 18, 22, 25, 26, 24, 29],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4, 8]})\n\n<span style=\"color: #008080;\">#add lines to plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">points<\/span> '], label=' <span style=\"color: #ff0000;\">Points<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">assists<\/span> '], label=' <span style=\"color: #ff0000;\">Assists<\/span> ', color=' <span style=\"color: #ff0000;\">steelblue<\/span> ')\n\n<span style=\"color: #008080;\">#place legend in center right of plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> (bbox_to_anchor=( <span style=\"color: #008000;\">1.02<\/span> , <span style=\"color: #008000;\">1<\/span> ), loc=' <span style=\"color: #ff0000;\">upper left<\/span> ', borderaxespad= <span style=\"color: #008000;\">0<\/span> )\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20709 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position13.png\" alt=\"\" width=\"612\" height=\"356\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">A oto jak umie\u015bci\u0107 legend\u0119 poza prawym dolnym rogiem fabu\u0142y:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#create data\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">points<\/span> ': [11, 17, 16, 18, 22, 25, 26, 24, 29],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4, 8]})\n\n<span style=\"color: #008080;\">#add lines to plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">points<\/span> '], label=' <span style=\"color: #ff0000;\">Points<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">assists<\/span> '], label=' <span style=\"color: #ff0000;\">Assists<\/span> ', color=' <span style=\"color: #ff0000;\">steelblue<\/span> ')\n\n<span style=\"color: #008080;\">#place legend in center right of plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> (bbox_to_anchor=( <span style=\"color: #008000;\">1.02<\/span> , <span style=\"color: #008000;\">0.1<\/span> ), loc=' <span style=\"color: #ff0000;\">upper left<\/span> ', borderaxespad= <span style=\"color: #008000;\">0<\/span> )<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20710 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position14.png\" alt=\"\" width=\"611\" height=\"350\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Szczeg\u00f3\u0142owe wyja\u015bnienie argumentu <strong>bbox_to_anchor()<\/strong> mo\u017cna znale\u017a\u0107 w <a href=\"https:\/\/matplotlib.org\/stable\/api\/_as_gen\/matplotlib.pyplot.legend.html\" target=\"_blank\" rel=\"noopener\">dokumentacji matplotlib<\/a> .<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Dodatkowe zasoby<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Poni\u017csze samouczki wyja\u015bniaj\u0105, jak wykonywa\u0107 inne typowe operacje w Matplotlib:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/pl\/rozmiar-czcionki-legendy-matplotlib\/\" target=\"_blank\" rel=\"noopener\">Jak zmieni\u0107 rozmiar czcionki legendy w Matplotlib<\/a><br \/> <a href=\"https:\/\/statorials.org\/pl\/tytu\u0142-legendy-matplotlib\/\">Jak doda\u0107 tytu\u0142 do legendy w Matplotlib<\/a><br \/> <a href=\"https:\/\/statorials.org\/pl\/pozycja-tytu\u0142u-matplotlib\/\" target=\"_blank\" rel=\"noopener\">Jak dostosowa\u0107 pozycj\u0119 tytu\u0142u w Matplotlib<\/a><br \/><a href=\"https:\/\/statorials.org\/pl\/pozycja-etykiety-osi-matplotlib\/\" target=\"_blank\" rel=\"noopener\">Jak dostosowa\u0107 po\u0142o\u017cenie etykiety osi w Matplotlib<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Aby zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, mo\u017cesz u\u017cy\u0107 funkcji plt.legend() . Na przyk\u0142ad mo\u017cesz u\u017cy\u0107 nast\u0119puj\u0105cej sk\u0142adni, aby umie\u015bci\u0107 legend\u0119 w lewym g\u00f3rnym rogu wykresu: plt. legend (loc=&#8217; upper left &#8217;) Domy\u015blna lokalizacja to \u201enajlepsza\u201d \u2013 w tym miejscu Matplotlib automatycznie znajduje lokalizacj\u0119 legendy na podstawie miejsc, w kt\u00f3rych unika zakrycia punkt\u00f3w danych. Mo\u017cna jednak [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2271","post","type-post","status-publish","format-standard","hentry","category-przewodnik"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials<\/title>\n<meta name=\"description\" content=\"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"pl_PL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials\" \/>\n<meta property=\"og:description\" content=\"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T23:59:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position11.png\" \/>\n<meta name=\"author\" content=\"Benjamin Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Napisane przez\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Szacowany czas czytania\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuty\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/\",\"url\":\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/\",\"name\":\"Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/pl\/#website\"},\"datePublished\":\"2023-07-22T23:59:54+00:00\",\"dateModified\":\"2023-07-22T23:59:54+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/pl\/#\/schema\/person\/6484727a4612df3e69f016c3129c6965\"},\"description\":\"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/#breadcrumb\"},\"inLanguage\":\"pl-PL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Dom\",\"item\":\"https:\/\/statorials.org\/pl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Jak zmieni\u0107 pozycj\u0119 legendy w matplotlib\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/pl\/#website\",\"url\":\"https:\/\/statorials.org\/pl\/\",\"name\":\"Statorials\",\"description\":\"Tw\u00f3j przewodnik po kompetencjach statystycznych!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/pl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pl-PL\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/pl\/#\/schema\/person\/6484727a4612df3e69f016c3129c6965\",\"name\":\"Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pl-PL\",\"@id\":\"https:\/\/statorials.org\/pl\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/pl\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/pl\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Benjamin Anderson\"},\"description\":\"Cze\u015b\u0107, jestem Benjamin i jestem emerytowanym profesorem statystyki, kt\u00f3ry zosta\u0142 oddanym nauczycielem Statorials. Dzi\u0119ki bogatemu do\u015bwiadczeniu i wiedzy specjalistycznej w dziedzinie statystyki ch\u0119tnie dziel\u0119 si\u0119 swoj\u0105 wiedz\u0105, aby wzmocni\u0107 pozycj\u0119 uczni\u00f3w za po\u015brednictwem Statorials. Wiedzie\u0107 wi\u0119cej\",\"sameAs\":[\"https:\/\/statorials.org\/pl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials","description":"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/","og_locale":"pl_PL","og_type":"article","og_title":"Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials","og_description":"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.","og_url":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/","og_site_name":"Statorials","article_published_time":"2023-07-22T23:59:54+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/position11.png"}],"author":"Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Napisane przez":"Benjamin Anderson","Szacowany czas czytania":"3 minuty"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/","url":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/","name":"Jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/pl\/#website"},"datePublished":"2023-07-22T23:59:54+00:00","dateModified":"2023-07-22T23:59:54+00:00","author":{"@id":"https:\/\/statorials.org\/pl\/#\/schema\/person\/6484727a4612df3e69f016c3129c6965"},"description":"W tym samouczku wyja\u015bniono, jak zmieni\u0107 po\u0142o\u017cenie legendy w Matplotlib, podaj\u0105c kilka przyk\u0142ad\u00f3w.","breadcrumb":{"@id":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/#breadcrumb"},"inLanguage":"pl-PL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/pl\/pozycja-legendy-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Dom","item":"https:\/\/statorials.org\/pl\/"},{"@type":"ListItem","position":2,"name":"Jak zmieni\u0107 pozycj\u0119 legendy w matplotlib"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/pl\/#website","url":"https:\/\/statorials.org\/pl\/","name":"Statorials","description":"Tw\u00f3j przewodnik po kompetencjach statystycznych!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/pl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pl-PL"},{"@type":"Person","@id":"https:\/\/statorials.org\/pl\/#\/schema\/person\/6484727a4612df3e69f016c3129c6965","name":"Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"pl-PL","@id":"https:\/\/statorials.org\/pl\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/pl\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/pl\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Benjamin Anderson"},"description":"Cze\u015b\u0107, jestem Benjamin i jestem emerytowanym profesorem statystyki, kt\u00f3ry zosta\u0142 oddanym nauczycielem Statorials. Dzi\u0119ki bogatemu do\u015bwiadczeniu i wiedzy specjalistycznej w dziedzinie statystyki ch\u0119tnie dziel\u0119 si\u0119 swoj\u0105 wiedz\u0105, aby wzmocni\u0107 pozycj\u0119 uczni\u00f3w za po\u015brednictwem Statorials. Wiedzie\u0107 wi\u0119cej","sameAs":["https:\/\/statorials.org\/pl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/posts\/2271","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/comments?post=2271"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/posts\/2271\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/media?parent=2271"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/categories?post=2271"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/pl\/wp-json\/wp\/v2\/tags?post=2271"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}