{"id":903,"date":"2023-07-28T09:10:08","date_gmt":"2023-07-28T09:10:08","guid":{"rendered":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/"},"modified":"2023-07-28T09:10:08","modified_gmt":"2023-07-28T09:10:08","slug":"numpyyi-dijitallestir","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/","title":{"rendered":"Numpy.digitize() kullan\u0131larak python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u00c7o\u011fu zaman Python&#8217;da bir de\u011fi\u015fkenin de\u011ferlerini &#8220;kutulara&#8221; koymak ilginizi \u00e7ekebilir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Neyse ki, a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanan <a href=\"https:\/\/numpy.org\/doc\/stable\/reference\/generated\/numpy.digitize.html\" target=\"_blank\" rel=\"noopener\">numpy.digitize()<\/a> i\u015flevini kullanarak bunu yapmak kolayd\u0131r:<br \/><\/span><\/p>\n<p> <strong><span style=\"color: #000000;\">numpy.digitize(x, bins, right=False)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Alt\u0131n:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x:<\/strong> gruba dizi.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>bins:<\/strong> kutu dizisi.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>sa\u011f:<\/strong> Aral\u0131klar\u0131n b\u00f6lmenin sa\u011f veya sol kenar\u0131n\u0131 i\u00e7erip i\u00e7ermedi\u011fini belirtir. Varsay\u0131lan olarak aral\u0131k sa\u011f kenar\u0131 i\u00e7ermez.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde bu i\u015flevin pratik kullan\u0131m\u0131na ili\u015fkin birka\u00e7 \u00f6rnek g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: T\u00fcm de\u011ferleri iki b\u00f6lmeye yerle\u015ftirin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir dizinin de\u011ferlerinin iki b\u00f6lmeye nas\u0131l yerle\u015ftirilece\u011fini g\u00f6sterir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>0<\/strong> e\u011fer x &lt; 20 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>1<\/strong> e\u011fer x \u2265 20<\/span><\/li>\n<\/ul>\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\n<span style=\"color: #008080;\">#create data<\/span>\ndata = [2, 4, 4, 7, 12, 14, 19, 20, 24, 31, 34]\n\n<span style=\"color: #008080;\">#place values into bins\n<span style=\"color: #000000;\">n.p. <span style=\"color: #3366ff;\">digitize<\/span> (data, bins=[20])\n\narray([0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1])\n<\/span><\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: T\u00fcm de\u011ferleri \u00fc\u00e7 b\u00f6lmeye yerle\u015ftirin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir dizinin de\u011ferlerinin \u00fc\u00e7 b\u00f6lmeye nas\u0131l yerle\u015ftirilece\u011fini g\u00f6sterir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>0<\/strong> e\u011fer x &lt; 10 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>1<\/strong> , e\u011fer 10 \u2264 x &lt; 20 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>2<\/strong> e\u011fer x \u2265 20 ise<\/span><\/li>\n<\/ul>\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\n<span style=\"color: #008080;\">#create data<\/span>\ndata = [2, 4, 4, 7, 12, 14, 20, 22, 24, 31, 34]\n\n<span style=\"color: #008080;\">#place values into bins\n<span style=\"color: #000000;\">n.p. <span style=\"color: #3366ff;\">digitize<\/span> (data, bins=[10, 20])\n\narray([0, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2])<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">right= <strong>True<\/strong> belirtirsek de\u011ferlerin a\u015fa\u011f\u0131daki kutulara yerle\u015ftirilece\u011fini unutmay\u0131n:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>0<\/strong> e\u011fer x \u2264 10<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>1<\/strong> , e\u011fer 10 &lt; x \u2264 20 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>2<\/strong> e\u011fer x &gt; 20 ise<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Her aral\u0131k b\u00f6lmenin sa\u011f kenar\u0131n\u0131 i\u00e7erecektir. \u015euna benziyor:<\/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\n<span style=\"color: #008080;\">#createdata<\/span>\ndata = [2, 4, 4, 7, 12, 14, 20, 22, 24, 31, 34]\n\n<span style=\"color: #008080;\">#place values into bins\n<span style=\"color: #000000;\">n.p. <span style=\"color: #3366ff;\">digitize<\/span> (data, bins=[10, 20], right= <span style=\"color: #008000;\">True<\/span> )\n\narray([0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2])<\/span><\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: T\u00fcm de\u011ferleri d\u00f6rt b\u00f6lmeye yerle\u015ftirin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir dizinin de\u011ferlerinin \u00fc\u00e7 b\u00f6lmeye nas\u0131l yerle\u015ftirilece\u011fini g\u00f6sterir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>0<\/strong> e\u011fer x &lt; 10 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>1<\/strong> , e\u011fer 10 \u2264 x &lt; 20 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>2<\/strong> e\u011fer 20 \u2264 x &lt; 30 ise<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>3<\/strong> e\u011fer x \u2265 30 ise<\/span><\/li>\n<\/ul>\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\n<span style=\"color: #008080;\">#createdata<\/span>\ndata = [2, 4, 4, 7, 12, 14, 20, 22, 24, 31, 34]\n\n<span style=\"color: #008080;\">#place values into bins\n<span style=\"color: #000000;\">n.p. <span style=\"color: #3366ff;\">digitize<\/span> (data, bins=[10, 20, 30])\n\narray([0, 0, 0, 0, 1, 1, 2, 2, 2, 3, 3])\n<\/span><\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 4: Her bir b\u00f6lmenin s\u0131kl\u0131\u011f\u0131n\u0131 say\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Numpy.digitize() i\u015flevini tamamlayan di\u011fer bir kullan\u0131\u015fl\u0131 NumPy i\u015flevi, her bir b\u00f6lmenin frekanslar\u0131n\u0131 sayan <a href=\"https:\/\/numpy.org\/doc\/stable\/reference\/generated\/numpy.bincount.html#numpy.bincount\" target=\"_blank\" rel=\"noopener\">numpy.bincount()<\/a> i\u015flevidir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir dizinin de\u011ferlerinin \u00fc\u00e7 gruba nas\u0131l yerle\u015ftirilece\u011fini ve ard\u0131ndan her grubun s\u0131kl\u0131\u011f\u0131n\u0131n nas\u0131l say\u0131laca\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\n<span style=\"color: #008080;\">#createdata<\/span>\ndata = [2, 4, 4, 7, 12, 14, 20, 22, 24, 31, 34]\n\n<span style=\"color: #008080;\">#place values into bins\n<span style=\"color: #000000;\">bin_data = np. <span style=\"color: #3366ff;\">digitize<\/span> (data, bins=[10, 20])\n\n<span style=\"color: #008080;\">#view binned data<\/span>\nbin_data\n\narray([0, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2])\n\n<span style=\"color: #008080;\">#count frequency of each bin\n<span style=\"color: #000000;\">n.p. <span style=\"color: #3366ff;\">bincount<\/span> (bin_data)\n\narray([4, 2, 5])\n<\/span><\/span><\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u00c7\u0131kt\u0131 bize \u015funu s\u00f6yl\u00fcyor:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\u201c0\u201d b\u00f6lmesi <strong>4<\/strong> veri de\u011feri i\u00e7erir.<\/span><\/li>\n<li> <span style=\"color: #000000;\">B\u00f6lme \u201c1\u201d <strong>2<\/strong> veri de\u011feri i\u00e7erir.<\/span><\/li>\n<li> <span style=\"color: #000000;\">B\u00f6lme \u201c2\u201d <strong>5<\/strong> veri de\u011feri i\u00e7erir.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><em><span style=\"color: #000000;\">Daha fazla Python e\u011fitimini burada bulabilirsiniz.<\/span><\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00c7o\u011fu zaman Python&#8217;da bir de\u011fi\u015fkenin de\u011ferlerini &#8220;kutulara&#8221; koymak ilginizi \u00e7ekebilir. Neyse ki, a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanan numpy.digitize() i\u015flevini kullanarak bunu yapmak kolayd\u0131r: numpy.digitize(x, bins, right=False) Alt\u0131n: x: gruba dizi. bins: kutu dizisi. sa\u011f: Aral\u0131klar\u0131n b\u00f6lmenin sa\u011f veya sol kenar\u0131n\u0131 i\u00e7erip i\u00e7ermedi\u011fini belirtir. Varsay\u0131lan olarak aral\u0131k sa\u011f kenar\u0131 i\u00e7ermez. Bu e\u011fitimde bu i\u015flevin pratik kullan\u0131m\u0131na ili\u015fkin birka\u00e7 [&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-903","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>Numpy.digitize() kullan\u0131larak Python&#039;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?<\/title>\n<meta name=\"description\" content=\"Numpy.digitize() i\u015flevini kullanarak Python&#039;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.\" \/>\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\/numpyyi-dijitallestir\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Numpy.digitize() kullan\u0131larak Python&#039;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?\" \/>\n<meta property=\"og:description\" content=\"Numpy.digitize() i\u015flevini kullanarak Python&#039;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T09:10:08+00:00\" \/>\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\/numpyyi-dijitallestir\/\",\"url\":\"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/\",\"name\":\"Numpy.digitize() kullan\u0131larak Python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-28T09:10:08+00:00\",\"dateModified\":\"2023-07-28T09:10:08+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Numpy.digitize() i\u015flevini kullanarak Python&#39;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Numpy.digitize() kullan\u0131larak python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?\"}]},{\"@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":"Numpy.digitize() kullan\u0131larak Python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?","description":"Numpy.digitize() i\u015flevini kullanarak Python&#39;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.","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\/numpyyi-dijitallestir\/","og_locale":"tr_TR","og_type":"article","og_title":"Numpy.digitize() kullan\u0131larak Python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?","og_description":"Numpy.digitize() i\u015flevini kullanarak Python&#39;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.","og_url":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/","og_site_name":"Statorials","article_published_time":"2023-07-28T09:10:08+00:00","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\/numpyyi-dijitallestir\/","url":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/","name":"Numpy.digitize() kullan\u0131larak Python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-28T09:10:08+00:00","dateModified":"2023-07-28T09:10:08+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Numpy.digitize() i\u015flevini kullanarak Python&#39;da de\u011fi\u015fkenlerin nas\u0131l grupland\u0131r\u0131laca\u011f\u0131na dair basit bir a\u00e7\u0131klama.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/numpyyi-dijitallestir\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Numpy.digitize() kullan\u0131larak python&#39;da de\u011fi\u015fkenler nas\u0131l gruplan\u0131r?"}]},{"@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\/903","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=903"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/903\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=903"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=903"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=903"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}