{"id":2270,"date":"2023-07-23T00:14:53","date_gmt":"2023-07-23T00:14:53","guid":{"rendered":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/"},"modified":"2023-07-23T00:14:53","modified_gmt":"2023-07-23T00:14:53","slug":"hata-eslemesi-aes-tarafindan-olusturulmalidir","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/","title":{"rendered":"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R kullan\u0131rken kar\u015f\u0131la\u015fabilece\u011finiz bir hata:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>Error: `mapping` must be created by `aes()`\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu hata, ggplot2&#8217;de bir grafik olu\u015ftururken <strong>aes()<\/strong> arg\u00fcman\u0131n\u0131 kullanmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve bunu yanl\u0131\u015f yerde kulland\u0131\u011f\u0131n\u0131zda veya &#8220;mapping&#8221; s\u00f6zdizimi olmadan kulland\u0131\u011f\u0131n\u0131zda ortaya \u00e7\u0131kar.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekte bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Hata nas\u0131l yeniden olu\u015fturulur?<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Diyelim ki ggplot2&#8217;yi kullanarak bir kutu grafi\u011fi olu\u015fturmaya \u00e7al\u0131\u015f\u0131yoruz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (ggplot2)\n<span style=\"color: #008080;\">\n#createdata\n<span style=\"color: #000000;\">df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (y=c(2, 3, 3, 4, 5, 5, 6, 7, 8, 8, 9, 10, 16, 19, 28),\n                 x1=c(1, 2, 2, 3, 5, 6, 8, 8, 9, 9, 10, 11, 12, 15, 15),\n                 x2=c(8, 7, 7, 6, 6, 4, 3, 5, 4, 6, 5, 4, 3, 2, 2))\n\n<span style=\"color: #008080;\">#attempt to create boxplot for 'x1' variable\n<\/span>ggplot() +\n  geom_boxplot(df, aes(x=x1))\n\nError: `mapping` must be created by `aes()`\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>aes()<\/strong> arg\u00fcman\u0131 <strong>geom_boxplot()<\/strong> i\u015flevinde &#8216;mapping&#8217; s\u00f6zdizimi kullan\u0131lmadan kullan\u0131ld\u0131\u011f\u0131ndan bir hata al\u0131yoruz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Hata nas\u0131l d\u00fczeltilir?<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Bu hatay\u0131 d\u00fczeltmenin iki yolu vard\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: \u201charitalama\u201d s\u00f6zdizimini kullan\u0131n<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Hatay\u0131 d\u00fczeltmenin bir yolu <strong>, aes()<\/strong> arg\u00fcman\u0131n\u0131n \u00f6n\u00fcnde \u00f6zel olarak &#8216;mapping&#8217; s\u00f6zdizimini kullanmakt\u0131r:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (ggplot2)\n<span style=\"color: #008080;\">\n#create data\n<span style=\"color: #000000;\">df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (y=c(2, 3, 3, 4, 5, 5, 6, 7, 8, 8, 9, 10, 16, 19, 28),\n                 x1=c(1, 2, 2, 3, 5, 6, 8, 8, 9, 9, 10, 11, 12, 15, 15),\n                 x2=c(8, 7, 7, 6, 6, 4, 3, 5, 4, 6, 5, 4, 3, 2, 2))\n\n<span style=\"color: #008080;\">#create boxplot for 'x1' variable\n<\/span>ggplot() +\n  geom_boxplot(df, mapping=aes(x=x1))<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20686 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aes11.png\" alt=\"\" width=\"633\" height=\"303\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><strong>E\u015fleme<\/strong> s\u00f6zdizimini a\u00e7\u0131k\u00e7a kulland\u0131\u011f\u0131m\u0131z i\u00e7in herhangi bir hatadan ka\u00e7\u0131nd\u0131k.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: ggplot i\u015flevinde &#8216;aes&#8217;i kullan\u0131n<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu hatay\u0131 d\u00fczeltmenin ba\u015fka bir yolu da <strong>ggplot()<\/strong> i\u015flevinde <strong>aes()<\/strong> arg\u00fcman\u0131n\u0131 kullanmakt\u0131r:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">library<\/span> (ggplot2)\n<span style=\"color: #008080;\">\n#createdata\n<span style=\"color: #000000;\">df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (y=c(2, 3, 3, 4, 5, 5, 6, 7, 8, 8, 9, 10, 16, 19, 28),\n                 x1=c(1, 2, 2, 3, 5, 6, 8, 8, 9, 9, 10, 11, 12, 15, 15),\n                 x2=c(8, 7, 7, 6, 6, 4, 3, 5, 4, 6, 5, 4, 3, 2, 2))\n\n<span style=\"color: #008080;\">#create boxplot for 'x1' variable<\/span>\nggplot(df, aes(x=x1)) +\n  geom_boxplot()\n<\/span><\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-20686 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aes11.png\" alt=\"\" width=\"635\" height=\"304\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><strong>ggplot()<\/strong> i\u015flevinde <strong>aes()<\/strong> arg\u00fcman\u0131n\u0131 kulland\u0131\u011f\u0131m\u0131z i\u00e7in kutu grafi\u011fini ba\u015far\u0131yla olu\u015fturabiliyor ve herhangi bir hatadan ka\u00e7\u0131nabiliyoruz.<\/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;deki di\u011fer yayg\u0131n hatalar\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/yeni-arsa-henuz-cagrilmadi\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de nas\u0131l d\u00fczeltilir:plot.new hen\u00fcz \u00e7a\u011fr\u0131lmad\u0131<\/a><br \/> R&#8217;de nas\u0131l d\u00fczeltilir: ExtractVars&#8217;ta ge\u00e7ersiz \u015fablon form\u00fcl\u00fc<br \/> <a href=\"https:\/\/statorials.org\/tr\/sifir-uzunlukta-r-degistirme\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de nas\u0131l onar\u0131l\u0131r: de\u011fi\u015ftirmenin uzunlu\u011fu s\u0131f\u0131rd\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R kullan\u0131rken kar\u015f\u0131la\u015fabilece\u011finiz bir hata: Error: `mapping` must be created by `aes()` Bu hata, ggplot2&#8217;de bir grafik olu\u015ftururken aes() arg\u00fcman\u0131n\u0131 kullanmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve bunu yanl\u0131\u015f yerde kulland\u0131\u011f\u0131n\u0131zda veya &#8220;mapping&#8221; s\u00f6zdizimi olmadan kulland\u0131\u011f\u0131n\u0131zda ortaya \u00e7\u0131kar. A\u015fa\u011f\u0131daki \u00f6rnekte bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi g\u00f6sterilmektedir. Hata nas\u0131l yeniden olu\u015fturulur? Diyelim ki ggplot2&#8217;yi kullanarak bir kutu grafi\u011fi olu\u015fturmaya \u00e7al\u0131\u015f\u0131yoruz: [&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-2270","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 nas\u0131l d\u00fczeltilir: hata: &#039;mapping&#039;, &#039;aes()&#039; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde R&#039;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\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\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de nas\u0131l d\u00fczeltilir: hata: &#039;mapping&#039;, &#039;aes()&#039; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde R&#039;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T00:14:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aes11.png\" \/>\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\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/\",\"url\":\"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/\",\"name\":\"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-23T00:14:53+00:00\",\"dateModified\":\"2023-07-23T00:14:53+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\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":"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials","description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\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\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials","og_description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r.","og_url":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/","og_site_name":"Statorials","article_published_time":"2023-07-23T00:14:53+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aes11.png"}],"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\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/","url":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/","name":"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-23T00:14:53+00:00","dateModified":"2023-07-23T00:14:53+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: hatas\u0131: `mapping`, `aes()` taraf\u0131ndan olu\u015fturulmal\u0131d\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/hata-eslemesi-aes-tarafindan-olusturulmalidir\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de nas\u0131l d\u00fczeltilir: hata: &#39;mapping&#39;, &#39;aes()&#39; taraf\u0131ndan olu\u015fturulmal\u0131d\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\/2270","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=2270"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2270\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}