{"id":1991,"date":"2023-07-24T04:31:10","date_gmt":"2023-07-24T04:31:10","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/"},"modified":"2023-07-24T04:31:10","modified_gmt":"2023-07-24T04:31:10","slug":"r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/","title":{"rendered":"C: di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine s\u00fctun nas\u0131l eklenir?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#8217;deki bir veri \u00e7er\u00e7evesine bir s\u00fctun eklemek 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;\">#add new column 'col3' with values based on columns 1 and 2<\/span>\ndf$col3 &lt;- <span style=\"color: #008000;\">with<\/span> (df, <span style=\"color: #008000;\">ifelse<\/span> (col1 &gt; col2, value_if_true, value_if_false))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6stermektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Di\u011fer S\u00fctunlara G\u00f6re Karakter S\u00fctunu Ekleme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri \u00e7er\u00e7evesindeki di\u011fer s\u00fctunlar\u0131n de\u011ferlerine g\u00f6re yeni bir karakter s\u00fctununun nas\u0131l eklenece\u011fini 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> (team=c('Mavs', 'Cavs', 'Spurs', 'Nets'),\n                 scored=c(99, 90, 84, 96),\n                 allowed=c(95, 80, 87, 95))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n   team scored allowed\n1 Mavs 99 95\n2 Cavs 90 80\n3 Spurs 84 87\n4 Nets 96 95\n\n<span style=\"color: #008080;\">#add 'result' column based on values in 'scored' and 'allowed' columns\n<\/span>df$result &lt;- <span style=\"color: #008000;\">with<\/span> (df, <span style=\"color: #008000;\">ifelse<\/span> (scored &gt; allowed, ' <span style=\"color: #ff0000;\">Win<\/span> ', ' <span style=\"color: #ff0000;\">Loss<\/span> '))\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n   team scored allowed result\n1 Mavs 99 95 Win\n2 Cavs 90 80 Win\n3 Spurs 84 87 Losses\n4 Nets 96 95 Win\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, yeni bir s\u00fctunda \u00fc\u00e7 potansiyel de\u011fer \u00fcretmek i\u00e7in iki <strong>ifelse()<\/strong> i\u015flevini birle\u015ftiren yeni bir karakter s\u00fctununun nas\u0131l eklenece\u011fini 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> (team=c('Mavs', 'Cavs', 'Spurs', 'Nets'),\n                 scored=c(99, 90, 84, 96),\n                 allowed=c(95, 80, 87, 95))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n   team scored allowed\n1 Mavs 99 95\n2 Cavs 90 80\n3 Spurs 84 87\n4 Nets 96 95\n\n<span style=\"color: #008080;\">#add 'quality' column based on values in 'scored' and 'allowed' columns\n<span style=\"color: #000000;\">df$quality &lt;- <span style=\"color: #008000;\">with<\/span> (df, <span style=\"color: #008000;\">ifelse<\/span> (scored &gt; 95, ' <span style=\"color: #ff0000;\">great<\/span> ',\n                         <span style=\"color: #008000;\">ifelse<\/span> (scored &gt; 85, ' <span style=\"color: #ff0000;\">good<\/span> ', ' <span style=\"color: #ff0000;\">bad<\/span> ')))\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n   team scored allowed quality\n1 Mavs 99 95 great\n2 Cavs 90 80 good\n3 Spurs 84 87 bad\n4 Nets 96 95 great\n<\/span><\/span><\/strong><\/span><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2:<\/strong><\/span> <span style=\"color: #000000;\"><strong>Di\u011fer s\u00fctunlara dayal\u0131 olarak say\u0131sal bir s\u00fctun ekleme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak bir veri \u00e7er\u00e7evesine yeni bir say\u0131sal s\u00fctunun nas\u0131l eklenece\u011fini 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> (team=c('Mavs', 'Cavs', 'Spurs', 'Nets'),\n                 scored=c(99, 90, 84, 96),\n                 allowed=c(95, 80, 87, 95))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n   team scored allowed\n1 Mavs 99 95\n2 Cavs 90 80\n3 Spurs 84 87\n4 Nets 96 95\n\n<span style=\"color: #008080;\">#add 'lower_score' column based on values in 'scored' and 'allowed' columns\n<span style=\"color: #000000;\">df$lower_score &lt;- <span style=\"color: #008000;\">with<\/span> (df, <span style=\"color: #008000;\">ifelse<\/span> (scored &gt; allowed, allowed, scored))\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n   team scored allowed lower_score\n1 Mavs 99 95 95\n2 Cavs 90 80 80\n3 Spurs 84 87 84\n4 Nets 96 95 95\n<\/span><\/span><\/strong><\/span><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h3>\n<p> <a href=\"https:\/\/statorials.org\/tr\/r-veri-cercevesine-bir-sutun-ekleyin\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de veri \u00e7er\u00e7evesine s\u00fctunlar nas\u0131l eklenir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/r-dataframee-bos-sutun-ekle\/\" target=\"_blank\" rel=\"noopener\">R&#8217;deki bir veri \u00e7er\u00e7evesine bo\u015f bir s\u00fctun nas\u0131l eklenir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/veri-cercevesi-rye-dizin-sutunu-ekleyin\/\" target=\"_blank\" rel=\"noopener\">R&#8217;deki veri \u00e7er\u00e7evesine dizin s\u00fctunu nas\u0131l eklenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#8217;deki bir veri \u00e7er\u00e7evesine bir s\u00fctun eklemek i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz: #add new column &#8216;col3&#8217; with values based on columns 1 and 2 df$col3 &lt;- with (df, ifelse (col1 &gt; col2, value_if_true, value_if_false)) A\u015fa\u011f\u0131daki \u00f6rnekler bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6stermektedir. \u00d6rnek 1: Di\u011fer S\u00fctunlara G\u00f6re Karakter S\u00fctunu Ekleme [&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-1991","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>C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#039;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\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\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#039;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-24T04:31:10+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\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\",\"name\":\"C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-24T04:31:10+00:00\",\"dateModified\":\"2023-07-24T04:31:10+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#39;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C: di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine s\u00fctun nas\u0131l eklenir?\"}]},{\"@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":"C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials","description":"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#39;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\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\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/","og_locale":"tr_TR","og_type":"article","og_title":"C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials","og_description":"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#39;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/","og_site_name":"Statorials","article_published_time":"2023-07-24T04:31:10+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\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/","url":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/","name":"C: Di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine bir s\u00fctun nas\u0131l eklenir - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-24T04:31:10+00:00","dateModified":"2023-07-24T04:31:10+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, di\u011fer s\u00fctunlar\u0131n de\u011ferlerine dayal\u0131 olarak R&#39;deki bir veri \u00e7er\u00e7evesine s\u00fctunlar\u0131n nas\u0131l eklenece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"C: di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine s\u00fctun nas\u0131l eklenir?"}]},{"@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\/1991","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=1991"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/1991\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=1991"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=1991"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=1991"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}