{"id":489,"date":"2023-07-29T17:59:32","date_gmt":"2023-07-29T17:59:32","guid":{"rendered":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/"},"modified":"2023-07-29T17:59:32","modified_gmt":"2023-07-29T17:59:32","slug":"rdeki-yas-piramidi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/","title":{"rendered":"R&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>N\u00fcfus piramidi,<\/strong> belirli bir n\u00fcfusun ya\u015f ve cinsiyet da\u011f\u0131l\u0131m\u0131n\u0131 g\u00f6steren bir grafiktir. Bu, bir n\u00fcfusun bile\u015fiminin yan\u0131 s\u0131ra mevcut n\u00fcfus art\u0131\u015f e\u011filimini de kolayca anlamak i\u00e7in yararl\u0131 bir grafiktir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">N\u00fcfus piramidinin dikd\u00f6rtgen bir \u015fekle sahip olmas\u0131, n\u00fcfusun daha yava\u015f bir oranda artt\u0131\u011f\u0131n\u0131 g\u00f6sterir; eski nesillerin yerini yakla\u015f\u0131k olarak ayn\u0131 b\u00fcy\u00fckl\u00fckteki yeni nesiller al\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">N\u00fcfus piramidinin piramit \u015feklinde olmas\u0131, n\u00fcfusun daha h\u0131zl\u0131 b\u00fcy\u00fcd\u00fc\u011f\u00fcn\u00fc g\u00f6sterir; eski nesiller yeni, daha b\u00fcy\u00fck nesiller \u00fcretir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Grafikte sol ve sa\u011f tarafta cinsiyet, y ekseninde ya\u015f, x ekseninde ise n\u00fcfus y\u00fczdesi veya miktar\u0131 g\u00f6sterilmektedir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde R&#8217;de bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>R&#8217;de bir n\u00fcfus piramidi olu\u015fturun<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Bir n\u00fcfusun ya\u015fa (0 ila 100 y\u0131l) ve cinsiyete (M = &#8220;Erkek&#8221;, F = &#8220;Kad\u0131n&#8221;) dayal\u0131 y\u00fczde bile\u015fimini g\u00f6steren a\u015fa\u011f\u0131daki veri setine sahip oldu\u011fumuzu varsayal\u0131m:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#make this example reproducible<\/span>\nset.seed(1)\n\n<span style=\"color: #008080;\">#create data frame\n<\/span>data &lt;- data.frame(age = rep(1:100, 2), gender = rep(c(\"M\", \"F\"), each = 100))\n\n<span style=\"color: #008080;\">#add variable population\n<\/span>data$population &lt;- 1\/sqrt(data$age) * runif(200, 10000, 15000)\n\n<span style=\"color: #008080;\">#convert population variable to percentage\n<\/span>data$population &lt;- data$population \/ sum(data$population) * 100\n\n<span style=\"color: #008080;\">#view first six rows of dataset\n<\/span>head(data)\n\n# age gender population\n#1 1M 2.424362\n#2 2M 1.794957\n#3 3M 1.589594\n#4 4M 1.556063\n#5 5M 1.053662\n#6 6M 1.266231\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu veri seti i\u00e7in <strong>ggplot2<\/strong> k\u00fct\u00fcphanesini kullanarak temel bir n\u00fcfus piramidi olu\u015fturabiliriz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load <em>ggplot2\n<\/em><\/span>library(ggplot2)\n\n<span style=\"color: #008080;\">#create population pyramid<\/span>\nggplot(data, aes(x = age, fill = gender,\n                 y = ifelse(test = gender == \"M\",\n                            yes = -population, no = population))) + \n  geom_bar(stat = \"identity\") +\n  scale_y_continuous(labels = abs, limits = max(data$population) * c(-1,1)) +\n  coordinate_flip()<\/strong><\/pre>\n<h3> <strong>Ba\u015fl\u0131k ve Etiket Ekleme<\/strong><\/h3>\n<p> <span style=\"color: #000000;\"><strong>Labs()<\/strong> arg\u00fcman\u0131n\u0131 kullanarak n\u00fcfus piramidine hem ba\u015fl\u0131klar\u0131 hem de eksen etiketlerini ekleyebiliriz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = age, fill = gender,\n                 y = ifelse(test = gender == \"M\",\n                            yes = -population, no = population))) + \n  geom_bar(stat = \"identity\") +\n  scale_y_continuous(labels = abs, limits = max(data$population) * c(-1,1)) <span style=\"color: #800080;\">+\n  labs(title = \"Population Pyramid\", x = \"Age\", y = \"Percent of population\")<\/span> +\n  coordinate_flip()<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Renkleri de\u011fi\u015ftir<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><strong>Scale_color_manual()<\/strong> arg\u00fcman\u0131n\u0131 kullanarak cinsiyetleri temsil etmek i\u00e7in kullan\u0131lan iki rengi de\u011fi\u015ftirebiliriz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data, aes(x = age, fill = gender,\n                 y = ifelse(test = gender == \"M\",\n                            yes = -population, no = population))) + \n  geom_bar(stat = \"identity\") +\n  scale_y_continuous(labels = abs, limits = max(data$population) * c(-1,1)) +\n  labs(title = \"Population Pyramid\", x = \"Age\", y = \"Percent of population\") <span style=\"color: #800080;\">+\n  scale_color_manual(values = c(\"pink\", \"steelblue\"),<\/span>\n<span style=\"color: #800080;\">aesthetics = c(\"color\", \"fill\"))<\/span> +\n  coordinate_flip()<\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\u00c7oklu ya\u015f piramitleri<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><strong>facet_wrap()<\/strong> arg\u00fcman\u0131n\u0131 kullanarak birden fazla n\u00fcfus piramidini birlikte \u00e7izmek de m\u00fcmk\u00fcnd\u00fcr. \u00d6rne\u011fin, <em>A, B<\/em> ve <em>C<\/em> \u00fclkeleri i\u00e7in n\u00fcfus verilerimiz oldu\u011funu varsayal\u0131m. A\u015fa\u011f\u0131daki kod, her \u00fclke i\u00e7in n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6stermektedir:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#make this example reproducible<\/span>\nset.seed(1)\n\n<span style=\"color: #008080;\">#create data frame\n<\/span>data_multiple &lt;- data.frame(age = rep(1:100, 6),\n                   gender = rep(c(\"M\", \"F\"), each = 300),\n                   country = rep(c(\"A\", \"B\", \"C\"), each = 100, times = 2))\n\n<span style=\"color: #008080;\">#add variable population\n<\/span>data_multiple$population &lt;- round(1\/sqrt(data_multiple$age)*runif(200, 10000, 15000), 0)\n\n<span style=\"color: #008080;\">#view first six rows of dataset\n<\/span>head(data_multiple)\n\n# age gender country population\n#1 1 MA 11328\n#2 2 MA 8387\n#3 3 MA 7427\n#4 4 MA 7271\n#5 5 MA 4923\n#6 6 MA 5916\n\n<span style=\"color: #008080;\">#create one population pyramid per country\n<\/span>ggplot(data_multiple, aes(x = age, fill = gender,\n                          y = ifelse(test = gender == \"M\",\n                                     yes = -population, no = population))) + \n  geom_bar(stat = \"identity\") +\n  scale_y_continuous(labels = abs, limits = max(data_multiple$population) * c(-1,1)) +\n  labs(y = \"Population Amount\") + \n  coordinate_flip() <span style=\"color: #800080;\">+\n  facet_wrap(~country) <span style=\"color: #000000;\">+<\/span>\n<span style=\"color: #000000;\">theme(axis.text.x = element_text(angle = 90, hjust = 1))<\/span> <span style=\"color: #008080;\">#rotate x-axis labels<\/span><\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>Temay\u0131 de\u011fi\u015ftir<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Son olarak grafiklerin temas\u0131n\u0131 de\u011fi\u015ftirebiliriz. \u00d6rne\u011fin a\u015fa\u011f\u0131daki kod, grafiklerin daha minimalist g\u00f6r\u00fcnmesini sa\u011flamak i\u00e7in <strong>theme_classic()<\/strong> i\u015flevini kullan\u0131r:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(data_multiple, aes(x = age, fill = gender,\n                          y = ifelse(test = gender == \"M\",\n                                     yes = -population, no = population))) + \n  geom_bar(stat = \"identity\") +\n  scale_y_continuous(labels = abs, limits = max(data_multiple$population) * c(-1,1)) +\n  labs(y = \"Population Amount\") + \n  coordinate_flip() +\n  facet_wrap(~country) <span style=\"color: #800080;\">+<\/span>\n<span style=\"color: #800080;\">theme_classic()<\/span> + \n  theme(axis.text.x = element_text(angle = 90, hjust = 1))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Veya \u00f6zel gg temalar\u0131n\u0131 kullanabilirsiniz. Gg temalar\u0131n\u0131n tam listesi i\u00e7in<\/span> <a href=\"https:\/\/yutannihilation.github.io\/allYourFigureAreBelongToUs\/ggthemes\/\" target=\"_blank\" rel=\"noopener\">dok\u00fcmantasyon sayfas\u0131na<\/a> bak\u0131n <span style=\"color: #000000;\">.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>N\u00fcfus piramidi, belirli bir n\u00fcfusun ya\u015f ve cinsiyet da\u011f\u0131l\u0131m\u0131n\u0131 g\u00f6steren bir grafiktir. Bu, bir n\u00fcfusun bile\u015fiminin yan\u0131 s\u0131ra mevcut n\u00fcfus art\u0131\u015f e\u011filimini de kolayca anlamak i\u00e7in yararl\u0131 bir grafiktir. N\u00fcfus piramidinin dikd\u00f6rtgen bir \u015fekle sahip olmas\u0131, n\u00fcfusun daha yava\u015f bir oranda artt\u0131\u011f\u0131n\u0131 g\u00f6sterir; eski nesillerin yerini yakla\u015f\u0131k olarak ayn\u0131 b\u00fcy\u00fckl\u00fckteki yeni nesiller al\u0131r. N\u00fcfus piramidinin [&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-489","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 - Statorials&#039;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde R&#039;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 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-yas-piramidi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R - Statorials&#039;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde R&#039;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T17:59:32+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=\"4 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/\",\"url\":\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/\",\"name\":\"R - Statorials&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-29T17:59:32+00:00\",\"dateModified\":\"2023-07-29T17:59:32+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde R&#39;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur\"}]},{\"@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 - Statorials&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?","description":"Bu e\u011fitimde R&#39;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 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-yas-piramidi\/","og_locale":"tr_TR","og_type":"article","og_title":"R - Statorials&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?","og_description":"Bu e\u011fitimde R&#39;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/","og_site_name":"Statorials","article_published_time":"2023-07-29T17:59:32+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"4 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/","url":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/","name":"R - Statorials&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur?","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-29T17:59:32+00:00","dateModified":"2023-07-29T17:59:32+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde R&#39;de kolayca bir n\u00fcfus piramidinin nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/rdeki-yas-piramidi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de n\u00fcfus piramidi nas\u0131l olu\u015fturulur"}]},{"@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\/489","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=489"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/489\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}