{"id":3972,"date":"2023-07-14T10:33:24","date_gmt":"2023-07-14T10:33:24","guid":{"rendered":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/"},"modified":"2023-07-14T10:33:24","modified_gmt":"2023-07-14T10:33:24","slug":"rdeki-veri-tablosunu-filtrele","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/","title":{"rendered":"R&#39;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;deki bir data.table&#8217;daki sat\u0131rlar\u0131 filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Sat\u0131rlar\u0131 tek bir ko\u015fula g\u00f6re filtreleme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>dt[col1 <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ', ]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Listede de\u011fer i\u00e7eren sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>dt[col1 <span style=\"color: #800080;\">%in%<\/span> c(' <span style=\"color: #ff0000;\">A<\/span> ', ' <span style=\"color: #ff0000;\">C<\/span> '), ]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: \u00c7e\u015fitli ko\u015fullardan birinin kar\u015f\u0131land\u0131\u011f\u0131 sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>dt[col1 <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ' <span style=\"color: #800080;\">|<\/span> col2 <span style=\"color: #800080;\">&lt;<\/span> <span style=\"color: #008000;\">10<\/span> , ]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 4: Birden \u00e7ok ko\u015fulun kar\u015f\u0131land\u0131\u011f\u0131 sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>dt[col1 <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ' <span style=\"color: #800080;\">&amp;<\/span> col2 <span style=\"color: #800080;\">&lt;<\/span> <span style=\"color: #008000;\">10<\/span> , ]<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, R&#8217;deki a\u015fa\u011f\u0131daki data.table ile her y\u00f6ntemin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (data.table)\n\n<span style=\"color: #008080;\">#create data table\n<\/span>dt &lt;- data. <span style=\"color: #3366ff;\">table<\/span> (team=c('A', 'A', 'A', 'B', 'C'),\n                 points=c(99, 90, 86, 88, 95),\n                 assists=c(33, 28, 31, 39, 34),\n                 rebounds=c(30, 28, 24, 24, 28))\n\n<span style=\"color: #008080;\">#view data table\n<\/span>dt\n\n   team points assists rebounds\n1: A 99 33 30\n2: A 90 28 28\n3: A 86 31 24\n4: B 88 39 24\n5: C 95 34 28<\/span><\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Sat\u0131rlar\u0131 bir ko\u015fula g\u00f6re filtreleme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, yaln\u0131zca <strong>ekip<\/strong> s\u00fctunundaki de\u011feri &#8220;A&#8221;ya e\u015fit olan sat\u0131rlar\u0131n nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong>#filter for rows where team is A<\/strong><\/span>\n<strong>dt[team <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ', ]\n\n   team points assists rebounds\n1: A 99 33 30\n2: A 90 28 28\n3: A 86 31 24\n<\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: Listede de\u011fer i\u00e7eren sat\u0131rlar\u0131 filtreleme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, yaln\u0131zca <strong>ekip<\/strong> s\u00fctunundaki de\u011feri &#8220;A&#8221; veya &#8220;C&#8221;ye e\u015fit olan sat\u0131rlar\u0131n nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong>#filter for rows where team is A or C<\/strong><\/span><strong>\ndt[team <span style=\"color: #800080;\">%in%<\/span> c(' <span style=\"color: #ff0000;\">A<\/span> ', ' <span style=\"color: #ff0000;\">C<\/span> '), ]\n\n   team points assists rebounds\n1: A 99 33 30\n2: A 90 28 28\n3: A 86 31 24\n4: C 95 34 28\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>\u0130lgili:<\/strong> <a href=\"https:\/\/statorials.org\/tr\/rdeki-operatorde\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de %in% Operat\u00f6r\u00fc Nas\u0131l Kullan\u0131l\u0131r (\u00d6rneklerle)<\/a><\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: \u00c7e\u015fitli ko\u015fullardan birinin kar\u015f\u0131land\u0131\u011f\u0131 sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, yaln\u0131zca <strong>tak\u0131m<\/strong> s\u00fctunundaki de\u011feri &#8220;A&#8221;ya e\u015fit olan <em>veya<\/em> <strong>puan<\/strong> s\u00fctunundaki de\u011fer 90&#8217;dan k\u00fc\u00e7\u00fck olan sat\u0131rlar\u0131n nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong>#filter for rows where team is A or points &lt; 90<\/strong><\/span><strong>\ndt[team <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ' <span style=\"color: #800080;\">|<\/span> points <span style=\"color: #800080;\">&lt;<\/span> <span style=\"color: #008000;\">90<\/span> , ]\n\n   team points assists rebounds\n1: A 99 33 30\n2: A 90 28 28\n3: A 86 31 24\n4: B 88 39 24<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : <strong>|<\/strong> Operat\u00f6r R&#8217;de &#8220;OR&#8221; anlam\u0131na gelir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 4: Birden fazla ko\u015fulun kar\u015f\u0131land\u0131\u011f\u0131 sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, yaln\u0131zca <strong>tak\u0131m<\/strong> s\u00fctunundaki de\u011ferin &#8220;A&#8221;ya e\u015fit oldu\u011fu <i>ve<\/i> <strong>puan<\/strong> s\u00fctunundaki de\u011ferin 90&#8217;dan k\u00fc\u00e7\u00fck oldu\u011fu sat\u0131rlar\u0131n nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008080;\"><strong>#filter for rows where team is A and points &lt; 90<\/strong><\/span><strong>\ndt[team <span style=\"color: #800080;\">==<\/span> ' <span style=\"color: #ff0000;\">A<\/span> ' <span style=\"color: #800080;\">&amp;<\/span> points <span style=\"color: #800080;\">&lt;<\/span> <span style=\"color: #008000;\">90<\/span> , ]\n\n   team points assists rebounds\n1: A 86 31 24<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : <b>&amp;<\/b> operat\u00f6r\u00fc R&#8217;de \u201cAND\u201d anlam\u0131na gelir.<\/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\u011fitimlerde R&#8217;de di\u011fer ortak g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/rde-vektor-filtresi\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir vekt\u00f6r nas\u0131l filtrelenir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/r-herhangi-bir-sifir-iceren-satirlari-kaldirin\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de s\u0131f\u0131rl\u0131 sat\u0131rlar nas\u0131l silinir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-bos-satirlari-kaldir\/\" target=\"_blank\" rel=\"noopener\">R&#8217;deki veri \u00e7er\u00e7evesinden bo\u015f sat\u0131rlar nas\u0131l kald\u0131r\u0131l\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;deki bir data.table&#8217;daki sat\u0131rlar\u0131 filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz: Y\u00f6ntem 1: Sat\u0131rlar\u0131 tek bir ko\u015fula g\u00f6re filtreleme dt[col1 == &#8216; A &#8216;, ] Y\u00f6ntem 2: Listede de\u011fer i\u00e7eren sat\u0131rlar\u0131 filtreleyin dt[col1 %in% c(&#8216; A &#8216;, &#8216; C &#8216;), ] Y\u00f6ntem 3: \u00c7e\u015fitli ko\u015fullardan birinin kar\u015f\u0131land\u0131\u011f\u0131 sat\u0131rlar\u0131 filtreleyin dt[col1 == &#8216; A &#8216; | col2 &lt; [&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-3972","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>R&#039;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde R&#039;deki bir data.table&#039;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\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\/rdeki-veri-tablosunu-filtrele\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde R&#039;deki bir data.table&#039;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-14T10:33:24+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\/rdeki-veri-tablosunu-filtrele\/\",\"url\":\"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/\",\"name\":\"R&#39;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-14T10:33:24+00:00\",\"dateModified\":\"2023-07-14T10:33:24+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde R&#39;deki bir data.table&#39;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de bir data.table nas\u0131l filtrelenir (\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":"R&#39;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials","description":"Bu e\u011fitimde R&#39;deki bir data.table&#39;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\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\/rdeki-veri-tablosunu-filtrele\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials","og_description":"Bu e\u011fitimde R&#39;deki bir data.table&#39;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/","og_site_name":"Statorials","article_published_time":"2023-07-14T10:33:24+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\/rdeki-veri-tablosunu-filtrele\/","url":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/","name":"R&#39;de bir data.table nas\u0131l filtrelenir (\u00f6rneklerle) \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-14T10:33:24+00:00","dateModified":"2023-07-14T10:33:24+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde R&#39;deki bir data.table&#39;\u0131n sat\u0131rlar\u0131n\u0131n nas\u0131l filtrelenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/rdeki-veri-tablosunu-filtrele\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de bir data.table nas\u0131l filtrelenir (\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\/3972","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=3972"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3972\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3972"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3972"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}