{"id":2961,"date":"2023-07-19T21:36:32","date_gmt":"2023-07-19T21:36:32","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/"},"modified":"2023-07-19T21:36:32","modified_gmt":"2023-07-19T21:36:32","slug":"r-histogrami-farkli-renkler","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/","title":{"rendered":"R&#39;de farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u00c7o\u011fu zaman R&#8217;de birka\u00e7 farkl\u0131 renge sahip bir histogram olu\u015fturmak isteyebilirsiniz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rneklerde R ve <a href=\"https:\/\/ggplot2.tidyverse.org\/\" target=\"_blank\" rel=\"noopener\">ggplot2<\/a> taban\u0131nda bunun nas\u0131l yap\u0131laca\u011f\u0131 g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\u00d6rnek 1: R taban\u0131nda farkl\u0131 renklere sahip histogram<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, R taban\u0131nda tek renkli bir histogram\u0131n nas\u0131l olu\u015fturulaca\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> (x=c(12, 14, 14, 15, 15, 17, 19, 22, 23, 23, 24))\n\n<span style=\"color: #008080;\">#create histogram\n<\/span>hist(df$x)\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25673 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/couleur-differente1.jpg\" alt=\"\" width=\"428\" height=\"435\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Varsay\u0131lan olarak histogramdaki t\u00fcm \u00e7ubuk renkleri ayn\u0131d\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ancak \u00fc\u00e7 farkl\u0131 renkte histogram olu\u015fturmak 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;\">#create data frame\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (x=c(12, 14, 14, 15, 15, 17, 19, 22, 23, 23, 24))\n\n<span style=\"color: #008080;\">#define histogram break points\n<\/span>hist_breaks &lt;- hist(df$x)$breaks\n\n<span style=\"color: #008080;\">#define colors to use in histogram based on break points\n<\/span>color_list &lt;- rep(' <span style=\"color: #ff0000;\">red<\/span> ', length(hist_breaks))\ncolor_list[hist_breaks &lt; <span style=\"color: #008000;\">20<\/span> ] &lt;- ' <span style=\"color: #ff0000;\">blue<\/span> '\ncolor_list[hist_breaks &lt; <span style=\"color: #008000;\">16<\/span> ] &lt;- ' <span style=\"color: #ff0000;\">purple<\/span> '\n\n<span style=\"color: #008080;\">#create histogram with custom colors<\/span>\nhist(df$x, col=color_list)\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25674 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/couleur-differente2.jpg\" alt=\"R'de farkl\u0131 renklere sahip histogram\" width=\"447\" height=\"441\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">\u00dc\u00e7 rengi olu\u015fturmak i\u00e7in mant\u0131k \u015fu \u015fekilde \u00e7al\u0131\u015ft\u0131:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\u00d6ncelikle her \u00e7ubu\u011fun <strong>k\u0131rm\u0131z\u0131<\/strong> oldu\u011funu belirttik.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Daha sonra kesme noktas\u0131 20&#8217;den k\u00fc\u00e7\u00fck olan her \u00e7ubu\u011fu <strong>mavi<\/strong> olacak \u015fekilde de\u011fi\u015ftirdik.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Daha sonra kesme noktas\u0131 16&#8217;dan k\u00fc\u00e7\u00fck olan her \u00e7ubu\u011fu <strong>mor<\/strong> olacak \u015fekilde de\u011fi\u015ftirdik.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Sonu\u00e7ta \u00fc\u00e7 renkli bir histogram elde edilir.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\u00d6rnek 2: ggplot2&#8217;de farkl\u0131 renklere sahip histogram<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">R&#8217;de a\u015fa\u011f\u0131daki veri \u00e7er\u00e7evesine sahip oldu\u011fumuzu varsayal\u0131m:<\/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> (x=c(12, 14, 14, 15, 15, 17, 19, 22, 23, 23, 24))\n\n<span style=\"color: #008080;\">#view data frame<\/span>\ndf\n\n    x\n1 12\n2 14\n3 14\n4 15\n5 15\n6 17\n7 19\n8 22\n9 23\n10 23\n11 24\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Bu veri \u00e7er\u00e7evesi i\u00e7in farkl\u0131 renklere sahip bir histogram olu\u015fturmak i\u00e7in \u00f6ncelikle <a href=\"https:\/\/statorials.org\/tr\/rde-ifelse-yuvalanmis\/\" target=\"_blank\" rel=\"noopener\">i\u00e7 i\u00e7e if else ifadesini<\/a> kullanarak de\u011ferlere y\u00f6nelik bir gruplama de\u011fi\u015fkeni olu\u015fturmam\u0131z gerekir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#create grouping variable\n<span style=\"color: #000000;\">df$group = ifelse(df$x &lt; <span style=\"color: #008000;\">16<\/span> , ' <span style=\"color: #ff0000;\">C<\/span> ', ifelse(df$x &lt; <span style=\"color: #008000;\">20<\/span> , ' <span style=\"color: #ff0000;\">B<\/span> ', ' <span style=\"color: #ff0000;\">A<\/span> '))<\/span>\n<\/span>\n<span style=\"color: #008080;\">#view updated data frame<\/span>\ndf\n\n    x group\n1 12 C\n2 14C\n3 14C\n4 15C\n5 15C\n6 17 B\n7 19 B\n8 22 A\n9 23 A\n10 23 A\n11 24 A<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Art\u0131k ggplot2&#8217;de bir histogram olu\u015fturabilir ve grup de\u011fi\u015fkenini kullanarak \u00e7izimdeki renkleri ayarlayabiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#create histogram with custom colors\n<\/span>ggplot(df, aes(x, fill=group)) +\n  geom_histogram(bins= <span style=\"color: #008000;\">6<\/span> , color=' <span style=\"color: #ff0000;\">black<\/span> ') +\n   scale_fill_manual(values = c(' <span style=\"color: #ff0000;\">A<\/span> ' = ' <span style=\"color: #ff0000;\">red<\/span> ',\n                                ' <span style=\"color: #ff0000;\">B<\/span> ' = ' <span style=\"color: #ff0000;\">blue<\/span> ',\n                                ' <span style=\"color: #ff0000;\">C<\/span> ' = ' <span style=\"color: #ff0000;\">purple<\/span> '))\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25675 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/couleur-differente3.jpg\" alt=\"\" width=\"474\" height=\"478\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Sonu\u00e7ta \u00fc\u00e7 renkli bir histogram elde edilir.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : <b>Scale_fill_manual()<\/b> ile ilgili t\u00fcm belgeleri <a href=\"https:\/\/ggplot2.tidyverse.org\/reference\/scale_manual.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 R&#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\/bagil-frekans-histogrami-r\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de g\u00f6receli frekans histogram\u0131 nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir histogram \u00fczerinde normal bir e\u011fri nas\u0131l kaplan\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/r-histogram-atlar\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de histogram sonlar\u0131 nas\u0131l belirlenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00c7o\u011fu zaman R&#8217;de birka\u00e7 farkl\u0131 renge sahip bir histogram olu\u015fturmak isteyebilirsiniz. A\u015fa\u011f\u0131daki \u00f6rneklerde R ve ggplot2 taban\u0131nda bunun nas\u0131l yap\u0131laca\u011f\u0131 g\u00f6sterilmektedir. \u00d6rnek 1: R taban\u0131nda farkl\u0131 renklere sahip histogram A\u015fa\u011f\u0131daki kod, R taban\u0131nda tek renkli bir histogram\u0131n nas\u0131l olu\u015fturulaca\u011f\u0131n\u0131 g\u00f6sterir: #create data frame df &lt;- data. frame (x=c(12, 14, 14, 15, 15, 17, 19, 22, [&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-2961","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 - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, R base ve ggplot2&#039;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#039;de farkl\u0131 renklere sahip bir histogram\u0131n 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\/r-histogrami-farkli-renkler\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, R base ve ggplot2&#039;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#039;de farkl\u0131 renklere sahip bir histogram\u0131n nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T21:36:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/couleur-differente1.jpg\" \/>\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-histogrami-farkli-renkler\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/\",\"name\":\"R - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-19T21:36:32+00:00\",\"dateModified\":\"2023-07-19T21:36:32+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, R base ve ggplot2&#39;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#39;de farkl\u0131 renklere sahip bir histogram\u0131n nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de farkl\u0131 renklere sahip bir histogram 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 - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur","description":"Bu e\u011fitimde, R base ve ggplot2&#39;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#39;de farkl\u0131 renklere sahip bir histogram\u0131n 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\/r-histogrami-farkli-renkler\/","og_locale":"tr_TR","og_type":"article","og_title":"R - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur","og_description":"Bu e\u011fitimde, R base ve ggplot2&#39;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#39;de farkl\u0131 renklere sahip bir histogram\u0131n nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/","og_site_name":"Statorials","article_published_time":"2023-07-19T21:36:32+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/couleur-differente1.jpg"}],"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-histogrami-farkli-renkler\/","url":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/","name":"R - Statorialsde farkl\u0131 renklere sahip bir histogram nas\u0131l olu\u015fturulur","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-19T21:36:32+00:00","dateModified":"2023-07-19T21:36:32+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, R base ve ggplot2&#39;deki bir \u00f6rnek de dahil olmak \u00fczere, R&#39;de farkl\u0131 renklere sahip bir histogram\u0131n nas\u0131l olu\u015fturulaca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-histogrami-farkli-renkler\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de farkl\u0131 renklere sahip bir histogram 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\/2961","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=2961"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2961\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2961"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2961"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2961"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}