{"id":999,"date":"2023-07-28T01:23:17","date_gmt":"2023-07-28T01:23:17","guid":{"rendered":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/"},"modified":"2023-07-28T01:23:17","modified_gmt":"2023-07-28T01:23:17","slug":"matplotlib-yigilmis-cubuk-grafigi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/","title":{"rendered":"Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafikler nas\u0131l olu\u015fturulur (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>Y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafik,<\/strong> farkl\u0131 kategorilerin s\u0131kl\u0131klar\u0131n\u0131 g\u00f6r\u00fcnt\u00fclemek i\u00e7in \u00e7ubuklar\u0131 kullanan bir grafik t\u00fcr\u00fcd\u00fcr.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/matplotlib.org\/stable\/api\/_as_gen\/matplotlib.pyplot.bar.html\" target=\"_blank\" rel=\"noopener noreferrer\">Matplotlib.pyplot.bar()<\/a> fonksiyonunu kullanarak Matplotlib&#8217;de bu tip bir grafik olu\u015fturabiliriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde bu fonksiyonun pratikte nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilmektedir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Temel Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafik Olu\u015fturma<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, d\u00f6rt farkl\u0131 sat\u0131\u015f \u00e7eyre\u011finde iki \u00fcr\u00fcn\u00fcn toplam sat\u0131\u015f\u0131n\u0131 g\u00f6r\u00fcnt\u00fclemek i\u00e7in y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafi\u011fin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> numpy <span style=\"color: #107d3f;\">as<\/span> np\n<span style=\"color: #107d3f;\">import<\/span> matplotlib.pyplot <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createdata<\/span>\nquarter = ['Q1', 'Q2', 'Q3', 'Q4']\nproduct_A = [14, 17, 12, 9]\nproduct_B = [7, 15, 24, 18]\n\n<span style=\"color: #008080;\">#define chart parameters\n<\/span>N = 4 \nbarWidth = .5\nxloc = np. <span style=\"color: #3366ff;\">orange<\/span> (N)\n\n<span style=\"color: #008080;\">#display stacked bar chart\n<\/span>p1 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_A, width=barWidth)\np2 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_B, bottom=product_A, width=barWidth)\nplt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-10353 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stackedbar1.png\" alt=\"Matplotlib'de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafik\" width=\"381\" height=\"258\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ba\u015fl\u0131k, etiketler ve ba\u015fl\u0131k ekleyin<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Grafi\u011fin okunmas\u0131n\u0131 kolayla\u015ft\u0131rmak i\u00e7in bir ba\u015fl\u0131k, etiketler, onay i\u015faretleri ve a\u00e7\u0131klama da ekleyebiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> numpy <span style=\"color: #107d3f;\">as<\/span> np\n<span style=\"color: #107d3f;\">import<\/span> matplotlib.pyplot <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#create data for two teams<\/span>\nquarter = ['Q1', 'Q2', 'Q3', 'Q4']\nproduct_A = [14, 17, 12, 9]\nproduct_B = [7, 15, 24, 18]\n\n<span style=\"color: #008080;\">#define chart parameters\n<\/span>N = 4 \nbarWidth = .5\nxloc = np. <span style=\"color: #3366ff;\">orange<\/span> (N)\n\n<span style=\"color: #008080;\">#create stacked bar chart\n<\/span>p1 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_A, width=barWidth)\np2 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_B, bottom=product_A, width=barWidth)\n\n<span style=\"color: #008080;\">#add labels, title, tick marks, and legend\n<\/span>plt. <span style=\"color: #3366ff;\">ylabel<\/span> ('Sales')\nplt. <span style=\"color: #3366ff;\">xlabel<\/span> ('Quarter')\nplt. <span style=\"color: #3366ff;\">title<\/span> ('Sales by Product &amp; Quarter')\nplt. <span style=\"color: #3366ff;\">xticks<\/span> (xloc, ('Q1', 'Q2', 'Q3', 'Q4'))\nplt. <span style=\"color: #3366ff;\">yticks<\/span> (np. <span style=\"color: #3366ff;\">arange<\/span> (0, 41, 5))\nplt. <span style=\"color: #3366ff;\">legend<\/span> ((p1[0], p2[0]), ('A', 'B'))\n\n<span style=\"color: #008080;\">#displaychart\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-10354 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stackedbar2.png\" alt=\"Matplotlib'de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafik\" width=\"400\" height=\"285\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Grafik renklerini \u00f6zelle\u015ftirin<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Son olarak, grafikte kullan\u0131lan renkleri <strong>plt.bar()<\/strong> dosyas\u0131ndaki <strong>colours()<\/strong> arg\u00fcman\u0131yla \u00f6zelle\u015ftirebiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> numpy <span style=\"color: #107d3f;\">as<\/span> np\n<span style=\"color: #107d3f;\">import<\/span> matplotlib.pyplot <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#create data for two teams<\/span>\nquarter = ['Q1', 'Q2', 'Q3', 'Q4']\nproduct_A = [14, 17, 12, 9]\nproduct_B = [7, 15, 24, 18]\n\n<span style=\"color: #008080;\">#define chart parameters\n<\/span>N = 4 \nbarWidth = .5\nxloc = np. <span style=\"color: #3366ff;\">orange<\/span> (N)\n\n<span style=\"color: #008080;\">#create stacked bar chart\n<\/span>p1 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_A, width=barWidth, color=' <span style=\"color: #008000;\">springgreen<\/span> ')\np2 = plt. <span style=\"color: #3366ff;\">bar<\/span> (xloc, product_B, bottom=product_A, width=barWidth, color=' <span style=\"color: #008000;\">coral<\/span> ')\n\n<span style=\"color: #008080;\">#add labels, title, tick marks, and legend\n<\/span>plt. <span style=\"color: #3366ff;\">ylabel<\/span> ('Sales')\nplt. <span style=\"color: #3366ff;\">xlabel<\/span> ('Quarter')\nplt. <span style=\"color: #3366ff;\">title<\/span> ('Sales by Product &amp; Quarter')\nplt. <span style=\"color: #3366ff;\">xticks<\/span> (xloc, ('Q1', 'Q2', 'Q3', 'Q4'))\nplt. <span style=\"color: #3366ff;\">yticks<\/span> (np. <span style=\"color: #3366ff;\">arange<\/span> (0, 41, 5))\nplt. <span style=\"color: #3366ff;\">legend<\/span> ((p1[0], p2[0]), ('A', 'B'))\n\n<span style=\"color: #008080;\">#displaychart\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-10355\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stackedbar3.png\" alt=\"\u00d6zel renklerle Matplotlib y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafi\u011fi\" width=\"410\" height=\"294\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Mevcut renklerin tam listesini Matplotlib <a href=\"https:\/\/matplotlib.org\/examples\/color\/named_colors.html\" target=\"_blank\" rel=\"noopener noreferrer\">belgelerinde<\/a> bulabilirsiniz.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimler Matplotlib&#8217;deki di\u011fer ortak g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fini a\u00e7\u0131klamaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/yazi-tipi-boyutunu-degistir-matplotlib\/\" target=\"_blank\" rel=\"noopener noreferrer\">Matplotlib grafi\u011findeki yaz\u0131 tipi boyutu nas\u0131l de\u011fi\u015ftirilir?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/matplotlib-keneleri-kaldirir\/\" target=\"_blank\" rel=\"noopener noreferrer\">Matplotlib grafiklerinden keneler nas\u0131l kald\u0131r\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/matplotlib-ekran-izgarasi\/\" target=\"_blank\" rel=\"noopener noreferrer\">Matplotlib grafiklerinde k\u0131lavuz \u00e7izgileri nas\u0131l g\u00f6sterilir?<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafik, farkl\u0131 kategorilerin s\u0131kl\u0131klar\u0131n\u0131 g\u00f6r\u00fcnt\u00fclemek i\u00e7in \u00e7ubuklar\u0131 kullanan bir grafik t\u00fcr\u00fcd\u00fcr. Matplotlib.pyplot.bar() fonksiyonunu kullanarak Matplotlib&#8217;de bu tip bir grafik olu\u015fturabiliriz. Bu e\u011fitimde bu fonksiyonun pratikte nas\u0131l kullan\u0131laca\u011f\u0131 g\u00f6sterilmektedir. Temel Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafik Olu\u015fturma A\u015fa\u011f\u0131daki kod, d\u00f6rt farkl\u0131 sat\u0131\u015f \u00e7eyre\u011finde iki \u00fcr\u00fcn\u00fcn toplam sat\u0131\u015f\u0131n\u0131 g\u00f6r\u00fcnt\u00fclemek i\u00e7in y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafi\u011fin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir: import numpy [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-999","post","type-post","status-publish","format-standard","hentry","category-rehber"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Matplotlib&#039;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Matplotlib&#039;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\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\/tr\/matplotlib-yigilmis-cubuk-grafigi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Matplotlib&#039;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Matplotlib&#039;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T01:23:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stackedbar1.png\" \/>\n<meta name=\"author\" content=\"Dr.benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr.benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/\",\"url\":\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/\",\"name\":\"Matplotlib&#39;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-28T01:23:17+00:00\",\"dateModified\":\"2023-07-28T01:23:17+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafikler nas\u0131l olu\u015fturulur (\u00f6rneklerle)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/tr\/#website\",\"url\":\"https:\/\/statorials.org\/tr\/\",\"name\":\"Statorials\",\"description\":\"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/tr\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"tr\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil\",\"sameAs\":[\"https:\/\/statorials.org\/tr\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Matplotlib&#39;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials","description":"Bu e\u011fitimde Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","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\/tr\/matplotlib-yigilmis-cubuk-grafigi\/","og_locale":"tr_TR","og_type":"article","og_title":"Matplotlib&#39;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials","og_description":"Bu e\u011fitimde Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/","og_site_name":"Statorials","article_published_time":"2023-07-28T01:23:17+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stackedbar1.png"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/","url":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/","name":"Matplotlib&#39;de Y\u0131\u011f\u0131lm\u0131\u015f \u00c7ubuk Grafikler Nas\u0131l Olu\u015fturulur (\u00d6rneklerle) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-28T01:23:17+00:00","dateModified":"2023-07-28T01:23:17+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafiklerin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/matplotlib-yigilmis-cubuk-grafigi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Matplotlib&#39;de y\u0131\u011f\u0131lm\u0131\u015f \u00e7ubuk grafikler nas\u0131l olu\u015fturulur (\u00f6rneklerle)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/tr\/#website","url":"https:\/\/statorials.org\/tr\/","name":"Statorials","description":"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/tr\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"tr"},{"@type":"Person","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil","sameAs":["https:\/\/statorials.org\/tr"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/999","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/comments?post=999"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/999\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=999"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=999"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=999"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}