{"id":3301,"date":"2023-07-18T05:04:24","date_gmt":"2023-07-18T05:04:24","guid":{"rendered":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/"},"modified":"2023-07-18T05:04:24","modified_gmt":"2023-07-18T05:04:24","slug":"matplotlib-yatay-kilavuz-cizgileri","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/","title":{"rendered":"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Matplotlib&#8217;de yaln\u0131zca yatay bir \u0131zgara \u00e7izmek i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\">ax. <span style=\"color: #3366ff;\">grid<\/span> (axis=' <span style=\"color: #ff0000;\">y<\/span> ')<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnek, bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek: Matplotlib&#8217;de yaln\u0131zca yatay bir \u0131zgara \u00e7izin<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, Matplotlib&#8217;de grafikte yaln\u0131zca yatay bir \u0131zgaran\u0131n g\u00f6r\u00fcnt\u00fclendi\u011fi bir \u00e7ubuk grafi\u011finin 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;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd<\/span>\nimport<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createDataFrame\n<span style=\"color: #000000;\">df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ':['Mavs', 'Nets', 'Spurs', 'Warriors'],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ':[105, 99, 112, 100]})\n\n<span style=\"color: #008080;\">#defineplot\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create bar plot\n<\/span>df. <span style=\"color: #3366ff;\">plot<\/span> (kind=' <span style=\"color: #ff0000;\">bar<\/span> ', ax=ax)\n\n<span style=\"color: #008080;\">#add horizontal gridlines\n<\/span>ax. <span style=\"color: #3366ff;\">grid<\/span> (axis=' <span style=\"color: #ff0000;\">y<\/span> ')\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/span><\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-27926 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/horz0.jpg\" alt=\"\" width=\"509\" height=\"371\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\u00c7izimdeki \u00e7ubuklar\u0131n arkas\u0131ndaki yatay k\u0131lavuz \u00e7izgisini g\u00f6r\u00fcnt\u00fclemek i\u00e7in <strong>ax.set_axisbelow(True)<\/strong> i\u015flevini kullanmaktan \u00e7ekinmeyin:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd<\/span>\nimport<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createDataFrame\n<span style=\"color: #000000;\">df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ':['Mavs', 'Nets', 'Spurs', 'Warriors'],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ':[105, 99, 112, 100]})\n\n<span style=\"color: #008080;\">#defineplot\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create bar plot\n<\/span>df. <span style=\"color: #3366ff;\">plot<\/span> (kind=' <span style=\"color: #ff0000;\">bar<\/span> ', ax=ax)\n\n<span style=\"color: #008080;\">#add horizontal gridlines behind bars in the plot\n<span style=\"color: #000000;\">ax. <span style=\"color: #3366ff;\">set_axisbelow<\/span> ( <span style=\"color: #008000;\">True<\/span> )\n<\/span><\/span>ax. <span style=\"color: #3366ff;\">grid<\/span> (axis=' <span style=\"color: #ff0000;\">y<\/span> ')\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-27925\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/horz1-1.jpg\" alt=\"Yatay \u0131zgara Matplotlib\" width=\"473\" height=\"350\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Izgaran\u0131n g\u00f6r\u00fcn\u00fcm\u00fcn\u00fc \u00f6zelle\u015ftirmek i\u00e7in <strong>grid()<\/strong> i\u015flevindeki <strong>color<\/strong> , <strong>linestyle<\/strong> ve <strong>linewidth<\/strong> arg\u00fcmanlar\u0131n\u0131 kullanmaktan \u00e7ekinmeyin:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd<\/span>\nimport<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #107d3f;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createDataFrame\n<span style=\"color: #000000;\">df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ':['Mavs', 'Nets', 'Spurs', 'Warriors'],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ':[105, 99, 112, 100]})\n\n<span style=\"color: #008080;\">#defineplot\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create bar plot\n<\/span>df. <span style=\"color: #3366ff;\">plot<\/span> (kind=' <span style=\"color: #ff0000;\">bar<\/span> ', ax=ax)\n\n<span style=\"color: #008080;\">#add horizontal gridlines with custom appearance<\/span>\nax. <span style=\"color: #3366ff;\">set_axisbelow<\/span> ( <span style=\"color: #008000;\">True<\/span> )\nax. <span style=\"color: #3366ff;\">grid<\/span> (axis=' <span style=\"color: #ff0000;\">y<\/span> ', color=' <span style=\"color: #ff0000;\">red<\/span> ', linestyle=' <span style=\"color: #ff0000;\">dashed<\/span> ', linewidth= <span style=\"color: #008000;\">3<\/span> )\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-27927 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/horz2-1.jpg\" alt=\"\" width=\"502\" height=\"374\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">K\u0131lavuz \u00e7izgilerini \u00f6zelle\u015ftirme yollar\u0131n\u0131n tam listesini Matplotlib <a href=\"https:\/\/matplotlib.org\/stable\/api\/_as_gen\/matplotlib.pyplot.grid.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\/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\/yazi-tipi-boyutunu-degistir-matplotlib\/\" target=\"_blank\" rel=\"noopener noreferrer\">Matplotlib grafi\u011finde yaz\u0131 tipi boyutu nas\u0131l de\u011fi\u015ftirilir?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/matplotlib-ortalama-cizgisi\/\" target=\"_blank\" rel=\"noopener\">Matplotlib&#8217;de \u00e7izime ortalama \u00e7izgi nas\u0131l eklenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Matplotlib&#8217;de yaln\u0131zca yatay bir \u0131zgara \u00e7izmek i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz: ax. grid (axis=&#8217; y &#8216;) A\u015fa\u011f\u0131daki \u00f6rnek, bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir. \u00d6rnek: Matplotlib&#8217;de yaln\u0131zca yatay bir \u0131zgara \u00e7izin A\u015fa\u011f\u0131daki kod, Matplotlib&#8217;de grafikte yaln\u0131zca yatay bir \u0131zgaran\u0131n g\u00f6r\u00fcnt\u00fclendi\u011fi bir \u00e7ubuk grafi\u011finin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir: import pandas as pd import matplotlib. pyplot as plt [&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-3301","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 yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Matplotlib&#039;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi 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-yatay-kilavuz-cizgileri\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Matplotlib&#039;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Matplotlib&#039;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-18T05:04:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/horz0.jpg\" \/>\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-yatay-kilavuz-cizgileri\/\",\"url\":\"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/\",\"name\":\"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-18T05:04:24+00:00\",\"dateModified\":\"2023-07-18T05:04:24+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Matplotlib&#39;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir\"}]},{\"@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 yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials","description":"Bu e\u011fitimde Matplotlib&#39;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi 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-yatay-kilavuz-cizgileri\/","og_locale":"tr_TR","og_type":"article","og_title":"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials","og_description":"Bu e\u011fitimde Matplotlib&#39;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/","og_site_name":"Statorials","article_published_time":"2023-07-18T05:04:24+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/horz0.jpg"}],"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-yatay-kilavuz-cizgileri\/","url":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/","name":"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-18T05:04:24+00:00","dateModified":"2023-07-18T05:04:24+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Matplotlib&#39;deki bir arsa \u00fczerinde yaln\u0131zca yatay bir \u0131zgaran\u0131n nas\u0131l \u00e7izilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/matplotlib-yatay-kilavuz-cizgileri\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Matplotlib&#39;de yaln\u0131zca yatay bir \u0131zgara nas\u0131l \u00e7izilir"}]},{"@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\/3301","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=3301"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3301\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}