{"id":2893,"date":"2023-07-20T05:31:17","date_gmt":"2023-07-20T05:31:17","guid":{"rendered":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/"},"modified":"2023-07-20T05:31:17","modified_gmt":"2023-07-20T05:31:17","slug":"dplyr-filtre-tarihi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/","title":{"rendered":"Dplyr kullanarak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/dplyr.tidyverse.org\/\" target=\"_blank\" rel=\"noopener\">Dplyr<\/a> paketini kullanarak bir veri \u00e7er\u00e7evesini R&#8217;deki tarihlere g\u00f6re filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Tarihten sonra sat\u0131rlar\u0131 filtrele<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df %&gt;% filter(date_column &gt; ' <span style=\"color: #ff0000;\">2022-01-01<\/span> ')\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Tarihten \u00f6nceki sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df %&gt;% filter(date_column &lt; ' <span style=\"color: #ff0000;\">2022-01-01<\/span> ') \n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: \u0130ki tarih aras\u0131ndaki sat\u0131rlar\u0131 filtreleme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df %&gt;% filter(between(date_column, as. <span style=\"color: #3366ff;\">Date<\/span> (' <span style=\"color: #ff0000;\">2022-01-20<\/span> '), as. <span style=\"color: #3366ff;\">Date<\/span> (' <span style=\"color: #ff0000;\">2022-02-20<\/span> ')))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, R&#8217;deki a\u015fa\u011f\u0131daki veri \u00e7er\u00e7evesiyle her y\u00f6ntemin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#create data frame\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (day=seq( <span style=\"color: #3366ff;\">as.Date<\/span> (' <span style=\"color: #ff0000;\">2022-01-01<\/span> '), by = ' <span style=\"color: #ff0000;\">week<\/span> ', <span style=\"color: #3366ff;\">length.out<\/span> = <span style=\"color: #008000;\">10<\/span> ),\n                 sales=c(40, 35, 39, 44, 48, 51, 23, 29, 60, 65))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n          day sales\n1 2022-01-01 40\n2 2022-01-08 35\n3 2022-01-15 39\n4 2022-01-22 44\n5 2022-01-29 48\n6 2022-02-05 51\n7 2022-02-12 23\n8 2022-02-19 29\n9 2022-02-26 60\n10 2022-03-05 65\n<\/strong><\/span><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Sat\u0131rlar\u0131 tarihten sonra filtreleme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Veri \u00e7er\u00e7evesindeki 25.01.2022 tarihinden sonraki tarihe sahip sat\u0131rlar\u0131 filtrelemek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (dplyr)<\/span>\n\n#filter for rows with date after 1\/25\/2022\n<\/span>df %&gt;% filter(day &gt; ' <span style=\"color: #ff0000;\">2022-01-25<\/span> ')\n\n         day sales\n1 2022-01-29 48\n2 2022-02-05 51\n3 2022-02-12 23\n4 2022-02-19 29\n5 2022-02-26 60\n6 2022-03-05 65\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n her birinin tarihi 25.01.2022&#8217;den sonrad\u0131r.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: Tarihten \u00f6nceki sat\u0131rlar\u0131 filtreleme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Tarihi 25.01.2022&#8217;den \u00f6nce olan veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131 filtrelemek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #008000;\">library<\/span> <span style=\"color: #000000;\">(dplyr)<\/span>\n\n#filter for rows with date before 1\/25\/2022\n<\/span>df %&gt;% filter(day &lt; ' <span style=\"color: #ff0000;\">2022-01-25<\/span> ')\n\n         day sales\n1 2022-01-01 40\n2 2022-01-08 35\n3 2022-01-15 39\n4 2022-01-22 44\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n her birinin tarihi 25.01.2022&#8217;den \u00f6ncedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: \u0130ki tarih aras\u0131ndaki sat\u0131rlar\u0131 filtreleme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Tarihi 20.01.2022 ile 20.02.2022 tarihleri aras\u0131ndaki veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131 filtrelemek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #008000;\">library<\/span> <span style=\"color: #000000;\">(dplyr)<\/span>\n\n#filter for rows with dates between 1\/20\/2022 and 2\/20\/2022\n<\/span>df %&gt;% filter(between(date_column, as. <span style=\"color: #3366ff;\">Date<\/span> (' <span style=\"color: #ff0000;\">2022-01-20<\/span> '), as. <span style=\"color: #3366ff;\">Date<\/span> (' <span style=\"color: #ff0000;\">2022-02-20<\/span> '))) \n\n         day sales\n1 2022-01-22 44\n2 2022-01-29 48\n3 2022-02-05 51\n4 2022-02-12 23\n5 2022-02-19 29\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n her birinin tarihi 01\/20\/2022 ile 02\/20\/2022 aras\u0131ndad\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not #1<\/strong> : Yukar\u0131daki y\u00f6ntemlerden herhangi biri i\u015fe yaramazsa, \u00f6ncelikle <strong>as.Date(<\/strong> function <strong>)<\/strong> i\u015flevini kullanarak \u00fczerinde \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131z tarihleri tan\u0131nabilir bir tarih bi\u00e7imine d\u00f6n\u00fc\u015ft\u00fcrmeniz gerekebilir.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not #2<\/strong> : <strong>Filtre<\/strong> fonksiyonunun tam belgelerini dplyr&#8217;de <a href=\"https:\/\/dplyr.tidyverse.org\/reference\/filter.html\" target=\"_blank\" rel=\"noopener\">burada<\/a> bulabilirsiniz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimlerde dplyr&#8217;de di\u011fer yayg\u0131n i\u015flemlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/dplyr-dizesini-iceren-filtre-satirlari\/\" target=\"_blank\" rel=\"noopener\">Belirli bir dizeyi i\u00e7eren sat\u0131rlar\u0131 dplyr kullanarak nas\u0131l filtreleyebilirim?<\/a><br \/> Dplyr kullanarak birden \u00e7ok ko\u015fula g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r<br \/> <a href=\"https:\/\/statorials.org\/tr\/dplyr-filtresi-iceride-degil\/\" target=\"_blank\" rel=\"noopener\">Dplyr&#8217;de &#8220;dahil de\u011fil&#8221; filtresi nas\u0131l kullan\u0131l\u0131r?<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dplyr paketini kullanarak bir veri \u00e7er\u00e7evesini R&#8217;deki tarihlere g\u00f6re filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz: Y\u00f6ntem 1: Tarihten sonra sat\u0131rlar\u0131 filtrele df %&gt;% filter(date_column &gt; &#8216; 2022-01-01 &#8216;) Y\u00f6ntem 2: Tarihten \u00f6nceki sat\u0131rlar\u0131 filtreleyin df %&gt;% filter(date_column &lt; &#8216; 2022-01-01 &#8216;) Y\u00f6ntem 3: \u0130ki tarih aras\u0131ndaki sat\u0131rlar\u0131 filtreleme df %&gt;% filter(between(date_column, as. Date (&#8216; 2022-01-20 &#8216;), [&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-2893","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>Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle 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\/dplyr-filtre-tarihi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T05:31:17+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\/dplyr-filtre-tarihi\/\",\"url\":\"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/\",\"name\":\"Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-20T05:31:17+00:00\",\"dateModified\":\"2023-07-20T05:31:17+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dplyr kullanarak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\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":"Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials","description":"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle 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\/dplyr-filtre-tarihi\/","og_locale":"tr_TR","og_type":"article","og_title":"Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials","og_description":"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/","og_site_name":"Statorials","article_published_time":"2023-07-20T05:31:17+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\/dplyr-filtre-tarihi\/","url":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/","name":"Dplyr kullan\u0131larak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\u0131r - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-20T05:31:17+00:00","dateModified":"2023-07-20T05:31:17+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, dplyr kullan\u0131larak bir veri \u00e7er\u00e7evesindeki sat\u0131rlar\u0131n tarihe g\u00f6re nas\u0131l filtrelenece\u011fi \u00f6rneklerle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/dplyr-filtre-tarihi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Dplyr kullanarak tarihe g\u00f6re filtreleme nas\u0131l yap\u0131l\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\/2893","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=2893"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2893\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}