{"id":2440,"date":"2023-07-22T06:42:15","date_gmt":"2023-07-22T06:42:15","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/"},"modified":"2023-07-22T06:42:15","modified_gmt":"2023-07-22T06:42:15","slug":"r-bolunmus-veri-cercevesi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/","title":{"rendered":"R&#39;de veri \u00e7er\u00e7evesi nas\u0131l b\u00f6l\u00fcl\u00fcr (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;de bir veri \u00e7er\u00e7evesini birden \u00e7ok daha k\u00fc\u00e7\u00fck veri blo\u011funa b\u00f6lmek i\u00e7in a\u015fa\u011f\u0131daki \u00fc\u00e7 y\u00f6ntemden birini kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Veri \u00e7er\u00e7evesini sat\u0131r de\u011ferlerine g\u00f6re manuel olarak b\u00f6lme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define first n rows to include in first data frame<\/span>\nn &lt;- 4\n\n<span style=\"color: #008080;\">#split data frame into two smaller data frames\n<\/span>df1 &lt;- df[row. <span style=\"color: #3366ff;\">names<\/span> (df) <span style=\"color: #800080;\">%in%<\/span> 1:n, ]\ndf2 &lt;- df[row. <span style=\"color: #3366ff;\">names<\/span> (df) <span style=\"color: #800080;\">%in%<\/span> (n+1):nrow(df), ]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Veri \u00e7er\u00e7evesini e\u015fit boyutta n veri \u00e7er\u00e7evesine b\u00f6l\u00fcn<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define number of data frames to split into<\/span>\nn &lt;- 3\n\n<span style=\"color: #008080;\">#split data frame into n equal-sized data frames<\/span>\nsplit(df, factor(sort(rank(row. <span style=\"color: #3366ff;\">names<\/span> (df)) <span style=\"color: #800080;\">%%<\/span> n)))\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: Veri \u00e7er\u00e7evesini s\u00fctun de\u011ferine g\u00f6re b\u00f6lme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#split data frame based on particular column value\n<\/span>df1 &lt;- df[df$column_name <span style=\"color: #800080;\">==<\/span> 0, ]\ndf2 &lt;- df[df$column_name <span style=\"color: #800080;\">!=<\/span> 0, ]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, her y\u00f6ntemin pratikte a\u015fa\u011f\u0131daki veri \u00e7er\u00e7evesiyle nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data frame\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (ID=c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12),\n                 sales=c(7, 8, 8, 7, 9, 7, 8, 9, 3, 3, 14, 10),\n                 leads=c(0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n   Sales lead ID\n1 1 7 0\n2 2 8 0\n3 3 8 1\n4 4 7 1\n5 5 9 0\n6 6 7 1\n7 7 8 1\n8 8 9 0\n9 9 3 1\n10 10 3 0\n11 11 14 1\n12 12 10 0<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Veri \u00e7er\u00e7evesini sat\u0131r de\u011ferlerine g\u00f6re manuel olarak b\u00f6lme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir veri \u00e7er\u00e7evesinin iki k\u00fc\u00e7\u00fck veri blo\u011funa nas\u0131l b\u00f6l\u00fcnece\u011fini g\u00f6sterir; ilki 1&#8217;den 4&#8217;e kadar olan sat\u0131rlar\u0131 ve ikincisi son sat\u0131ra kadar olan 5&#8217;i i\u00e7erir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define row to split on\n<span style=\"color: #000000;\">n &lt;- 4\n\n<span style=\"color: #008080;\">#split into two data frames\n<\/span>df1 &lt;- df[row. <span style=\"color: #3366ff;\">names<\/span> (df) <span style=\"color: #800080;\">%in%<\/span> 1:n, ]\ndf2 &lt;- df[row. <span style=\"color: #3366ff;\">names<\/span> (df) <span style=\"color: #800080;\">%in%<\/span> (n+1):nrow(df), ]\n\n<span style=\"color: #008080;\">#view resulting data frames\n<\/span>df1\n\n  Sales lead ID\n1 1 7 0\n2 2 8 0\n3 3 8 1\n4 4 7 1\n\ndf2\n\n   Sales lead ID\n5 5 9 0\n6 6 7 1\n7 7 8 1\n8 8 9 0\n9 9 3 1\n10 10 3 0\n11 11 14 1\n12 12 10 0\n<\/span><\/span><\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Veri \u00e7er\u00e7evesini e\u015fit boyutta n veri \u00e7er\u00e7evesine b\u00f6l\u00fcn<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir veri \u00e7er\u00e7evesinin e\u015fit boyuttaki <em>n<\/em> veri \u00e7er\u00e7evesine nas\u0131l b\u00f6l\u00fcnece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define number of data frames to split into<\/span>\nn &lt;- 3\n\n<span style=\"color: #008080;\">#split data frame into n equal-sized data frames<\/span>\nsplit(df, factor(sort(rank(row. <span style=\"color: #3366ff;\">names<\/span> (df)) <span style=\"color: #800080;\">%%<\/span> n)))\n\n$`0`\n  Sales lead ID\n1 1 7 0\n2 2 8 0\n3 3 8 1\n4 4 7 1\n\n$`1`\n  Sales lead ID\n5 5 9 0\n6 6 7 1\n7 7 8 1\n8 8 9 0\n\n$`2`\n   Sales lead ID\n9 9 3 1\n10 10 3 0\n11 11 14 1\n12 12 10 0\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Sonu\u00e7, e\u015fit boyutta \u00fc\u00e7 veri \u00e7er\u00e7evesidir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: Veri \u00e7er\u00e7evesini s\u00fctun de\u011ferine g\u00f6re b\u00f6lme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, belirli bir s\u00fctunun de\u011ferine g\u00f6re bir veri \u00e7er\u00e7evesinin iki veri \u00e7er\u00e7evesine nas\u0131l b\u00f6l\u00fcnece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#split data frame based on particular column value\n<\/span>df1 &lt;- df[df$leads <span style=\"color: #800080;\">==<\/span> 0, ]\ndf2 &lt;- df[df$leads <span style=\"color: #800080;\">!=<\/span> 0, ]\n\n<span style=\"color: #008080;\">#view resulting data frames\n<\/span>df1\n\n   Sales lead ID\n1 1 7 0\n2 2 8 0\n5 5 9 0\n8 8 9 0\n10 10 3 0\n12 12 10 0\n\ndf2\n\n   Sales lead ID\n3 3 8 1\n4 4 7 1\n6 6 7 1\n7 7 8 1\n9 9 3 1\n11 11 14 1<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>df1&#8217;in<\/strong> orijinal veri \u00e7er\u00e7evesinde &#8220;\u00f6nc\u00fcl\u00fcklerin&#8221; s\u0131f\u0131ra e\u015fit oldu\u011fu t\u00fcm sat\u0131rlar\u0131 i\u00e7erdi\u011fini ve <strong>df2&#8217;nin<\/strong> orijinal veri \u00e7er\u00e7evesinde &#8220;\u00f6nc\u00fcl\u00fcklerin&#8221; bire e\u015fit oldu\u011fu t\u00fcm sat\u0131rlar\u0131 i\u00e7erdi\u011fini unutmay\u0131n.<\/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\/rde-birden-fazla-veri-cercevesini-birlestirme\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de birden fazla veri \u00e7er\u00e7evesi nas\u0131l birle\u015ftirilir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-yigin-sutunlari\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de veri \u00e7er\u00e7evesi s\u00fctunlar\u0131 nas\u0131l istiflenir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/r-diger-sutunlara-dayali-olarak-bir-veri-cercevesine-bir-sutun-eklemek\/\" target=\"_blank\" rel=\"noopener\">R&#8217;deki di\u011fer s\u00fctunlara dayal\u0131 olarak veri \u00e7er\u00e7evesine s\u00fctun nas\u0131l eklenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;de bir veri \u00e7er\u00e7evesini birden \u00e7ok daha k\u00fc\u00e7\u00fck veri blo\u011funa b\u00f6lmek i\u00e7in a\u015fa\u011f\u0131daki \u00fc\u00e7 y\u00f6ntemden birini kullanabilirsiniz: Y\u00f6ntem 1: Veri \u00e7er\u00e7evesini sat\u0131r de\u011ferlerine g\u00f6re manuel olarak b\u00f6lme #define first n rows to include in first data frame n &lt;- 4 #split data frame into two smaller data frames df1 &lt;- df[row. names (df) %in% 1:n, [&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-2440","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 Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, bir veri blo\u011funun R&#039;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\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-bolunmus-veri-cercevesi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, bir veri blo\u011funun R&#039;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T06:42:15+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\/r-bolunmus-veri-cercevesi\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/\",\"name\":\"R&#39;de Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-22T06:42:15+00:00\",\"dateModified\":\"2023-07-22T06:42:15+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, bir veri blo\u011funun R&#39;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de veri \u00e7er\u00e7evesi nas\u0131l b\u00f6l\u00fcl\u00fcr (\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 Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials","description":"Bu e\u011fitimde, bir veri blo\u011funun R&#39;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\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-bolunmus-veri-cercevesi\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials","og_description":"Bu e\u011fitimde, bir veri blo\u011funun R&#39;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/","og_site_name":"Statorials","article_published_time":"2023-07-22T06:42:15+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\/r-bolunmus-veri-cercevesi\/","url":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/","name":"R&#39;de Veri \u00c7er\u00e7evesi Nas\u0131l B\u00f6l\u00fcl\u00fcr (\u00d6rneklerle) \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-22T06:42:15+00:00","dateModified":"2023-07-22T06:42:15+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, bir veri blo\u011funun R&#39;de daha k\u00fc\u00e7\u00fck veri bloklar\u0131na nas\u0131l b\u00f6l\u00fcnece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-bolunmus-veri-cercevesi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de veri \u00e7er\u00e7evesi nas\u0131l b\u00f6l\u00fcl\u00fcr (\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\/2440","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=2440"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2440\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2440"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2440"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}