{"id":1119,"date":"2023-07-27T14:45:29","date_gmt":"2023-07-27T14:45:29","guid":{"rendered":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/"},"modified":"2023-07-27T14:45:29","modified_gmt":"2023-07-27T14:45:29","slug":"rde-bos-bir-veri-cercevesi-olusturun","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/","title":{"rendered":"R&#39;de bo\u015f veri \u00e7er\u00e7evesi nas\u0131l olu\u015fturulur (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;de bo\u015f bir veri \u00e7er\u00e7evesi olu\u015fturman\u0131n iki temel yolu vard\u0131r:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: S\u00fctun adlar\u0131yla matris<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame with 0 rows and 3 columns<\/span>\ndf &lt;- data.frame(matrix(ncol = 3, nrow = 0))\n\n<span style=\"color: #008080;\">#provide column names<\/span>\ncolnames(df) &lt;- c(' <span style=\"color: #008000;\">var1<\/span> ', ' <span style=\"color: #008000;\">var2<\/span> ', ' <span style=\"color: #008000;\">var3<\/span> ')\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: bo\u015f vekt\u00f6rleri ba\u015flat<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame with 5 empty vectors<\/span>\ndf2 &lt;- data.frame(Doubles= <span style=\"color: #3366ff;\">double<\/span> (),\n                 Integers= <span style=\"color: #3366ff;\">integer<\/span> (),\n                 Factors= <span style=\"color: #3366ff;\">factor<\/span> (),\n                 Logicals= <span style=\"color: #3366ff;\">logical<\/span> (),\n                 Characters= <span style=\"color: #3366ff;\">character<\/span> (),\n                 stringsAsFactors = <span style=\"color: #008000;\">FALSE<\/span> )\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde, bu y\u00f6ntemlerin her ikisinin de pratikte nas\u0131l kullan\u0131laca\u011f\u0131na ili\u015fkin \u00f6rnekler g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: S\u00fctun adlar\u0131yla matris<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Bo\u015f bir veri \u00e7er\u00e7evesi olu\u015fturman\u0131n ilk yolu \u015fu ad\u0131mlar\u0131 takip etmektir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">0 sat\u0131r ve istenilen say\u0131da s\u00fctun i\u00e7eren bir matris tan\u0131mlay\u0131n.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Daha sonra onu bir veri \u00e7er\u00e7evesine d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in <strong>data.frame()<\/strong> i\u015flevini ve ona s\u00fctun adlar\u0131 vermek i\u00e7in <strong>colnames()<\/strong> i\u015flevini kullan\u0131n.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Daha sonra ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesinin yap\u0131s\u0131n\u0131 analiz etmek i\u00e7in <strong>str()<\/strong> i\u015flevini kullan\u0131n.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\u00d6rne\u011fin:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame with 0 rows and 5 columns<\/span>\ndf &lt;- data.frame(matrix(ncol = 5, nrow = 0))\n\n<span style=\"color: #008080;\">#provide column names<\/span>\ncolnames(df) &lt;- c(' <span style=\"color: #008000;\">var1<\/span> ', ' <span style=\"color: #008000;\">var2<\/span> ', ' <span style=\"color: #008000;\">var3<\/span> ', ' <span style=\"color: #008000;\">var4<\/span> ', ' <span style=\"color: #008000;\">var5<\/span> ')\n\n<span style=\"color: #008080;\">#view structure of the data frame<\/span>\nstr(df)\n\n'data.frame': 0 obs. of 5 variables:\n $var1:logi \n $var2:logi \n $var3:logi \n $var4:logi \n $var5:logi \n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesinin 0 g\u00f6zlem (yani sat\u0131rlar), 5 de\u011fi\u015fken (yani s\u00fctunlar) i\u00e7erdi\u011fini ve de\u011fi\u015fkenlerin her birinin <em>mant\u0131ksal<\/em> s\u0131n\u0131fta oldu\u011funu g\u00f6rebiliriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Her de\u011fi\u015fken s\u0131n\u0131f <em>mant\u0131\u011f\u0131na<\/em> sahip olmas\u0131na ra\u011fmen, farkl\u0131 t\u00fcrdeki de\u011fi\u015fkenlere yine de sat\u0131r ekleyebilirsiniz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: bo\u015f vekt\u00f6rleri ba\u015flat<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Bo\u015f bir veri \u00e7er\u00e7evesi olu\u015fturman\u0131n ikinci yolu \u015fu ad\u0131mlar\u0131 takip etmektir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Veri \u00e7er\u00e7evesini belirli s\u0131n\u0131f t\u00fcrlerine sahip bo\u015f vekt\u00f6rler k\u00fcmesi olarak tan\u0131mlay\u0131n.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>StringsAsFactors=False<\/strong> de\u011ferini belirtin, b\u00f6ylece t\u00fcm karakter vekt\u00f6rleri fakt\u00f6r olarak de\u011fil dize olarak ele al\u0131n\u0131r.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\u00d6rne\u011fin:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame with 5 empty vectors\n<\/span>df2 &lt;- data.frame(Doubles= <span style=\"color: #3366ff;\">double<\/span> (),\n                  Integers= <span style=\"color: #3366ff;\">integer<\/span> (),\n                  Factors= <span style=\"color: #3366ff;\">factor<\/span> (),\n                  Logicals= <span style=\"color: #3366ff;\">logical<\/span> (),\n                  Characters= <span style=\"color: #3366ff;\">character<\/span> (),\n                  stringsAsFactors = <span style=\"color: #008000;\">FALSE<\/span> )\n\n<span style=\"color: #008080;\">#view structure of the data frame<\/span>\nstr(df2)\n\n'data.frame': 0 obs. of 5 variables:\n $ Doubles: num \n $ Integers: int \n $Factors: Factor w\/ 0 levels: \n $ Logicals: logi \n $Characters: chr  \n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri \u00e7er\u00e7evesinin 0 g\u00f6zlem (yani sat\u0131rlar), 5 de\u011fi\u015fken (yani s\u00fctunlar) i\u00e7erdi\u011fini ve de\u011fi\u015fkenlerin her birinin be\u015f farkl\u0131 s\u0131n\u0131fa kar\u015f\u0131l\u0131k geldi\u011fini g\u00f6rebiliriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Veri \u00e7er\u00e7evesi i\u00e7in s\u00fctun adlar\u0131n\u0131 da tek bir ad\u0131mda sa\u011flayabildi\u011fimizi unutmay\u0131n (\u00f6rne\u011fin, ilk s\u00fctun ad\u0131 &#8220;\u00c7iftler&#8221;, ikinci s\u00fctun ad\u0131 &#8220;Tamsay\u0131lar&#8221; vb.).<\/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 R&#8217;de di\u011fer bo\u015f nesnelerin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/rde-bos-bir-liste-olustur\/\">R&#8217;de bo\u015f bir liste nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rde-bos-bir-vektor-yarat\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bo\u015f bir vekt\u00f6r nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rde-bos-bir-matris-olusturun\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bo\u015f bir matris nas\u0131l olu\u015fturulur<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;de bo\u015f bir veri \u00e7er\u00e7evesi olu\u015fturman\u0131n iki temel yolu vard\u0131r: Y\u00f6ntem 1: S\u00fctun adlar\u0131yla matris #create data frame with 0 rows and 3 columns df &lt;- data.frame(matrix(ncol = 3, nrow = 0)) #provide column names colnames(df) &lt;- c(&#8216; var1 &#8216;, &#8216; var2 &#8216;, &#8216; var3 &#8216;) Y\u00f6ntem 2: bo\u015f vekt\u00f6rleri ba\u015flat #create data frame with [&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-1119","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 Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde R&#039;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 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\/rde-bos-bir-veri-cercevesi-olusturun\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde R&#039;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T14:45:29+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=\"3 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/\",\"url\":\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/\",\"name\":\"R&#39;de Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-27T14:45:29+00:00\",\"dateModified\":\"2023-07-27T14:45:29+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde R&#39;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de bo\u015f veri \u00e7er\u00e7evesi nas\u0131l olu\u015fturulur (\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 Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)","description":"Bu e\u011fitimde R&#39;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 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\/rde-bos-bir-veri-cercevesi-olusturun\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)","og_description":"Bu e\u011fitimde R&#39;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/","og_site_name":"Statorials","article_published_time":"2023-07-27T14:45:29+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"3 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/","url":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/","name":"R&#39;de Bo\u015f Veri \u00c7er\u00e7evesi Nas\u0131l Olu\u015fturulur (\u00d6rneklerle)","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-27T14:45:29+00:00","dateModified":"2023-07-27T14:45:29+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde R&#39;de bo\u015f bir veri \u00e7er\u00e7evesinin nas\u0131l olu\u015fturulaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/rde-bos-bir-veri-cercevesi-olusturun\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de bo\u015f veri \u00e7er\u00e7evesi nas\u0131l olu\u015fturulur (\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\/1119","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=1119"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/1119\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=1119"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=1119"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=1119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}