{"id":3044,"date":"2023-07-19T11:54:34","date_gmt":"2023-07-19T11:54:34","guid":{"rendered":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/"},"modified":"2023-07-19T11:54:34","modified_gmt":"2023-07-19T11:54:34","slug":"bolunmus-r-test-treni","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/","title":{"rendered":"E\u011fitimde veriler nas\u0131l b\u00f6l\u00fcn\u00fcr &amp; #038; r&#39;deki test setleri (3 y\u00f6ntem)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Genellikle makine \u00f6\u011frenimi algoritmalar\u0131n\u0131 veri k\u00fcmelerine uyarlad\u0131\u011f\u0131m\u0131zda, \u00f6ncelikle veri k\u00fcmesini bir e\u011fitim seti ve bir test seti olarak ikiye ay\u0131r\u0131r\u0131z.<\/span><\/p>\n<p> <span style=\"color: #000000;\">R&#8217;de verileri e\u011fitim ve test k\u00fcmelerine b\u00f6lmenin \u00fc\u00e7 yayg\u0131n yolu vard\u0131r:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Base R&#8217;yi kullan\u0131n<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#use 70% of dataset as training set and 30% as test set\n<\/span>sample &lt;- sample(c( <span style=\"color: #008000;\">TRUE<\/span> , <span style=\"color: #008000;\">FALSE<\/span> ), nrow(df), replace= <span style=\"color: #008000;\">TRUE<\/span> , prob=c( <span style=\"color: #008000;\">0.7<\/span> , <span style=\"color: #008000;\">0.3<\/span> ))\ntrain &lt;- df[sample, ]\ntest &lt;- df[!sample, ]<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: caTools paketini kullanma<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (caTools)<\/span>\n\n#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#use 70% of dataset as training set and 30% as test set\n<\/span>sample &lt;- sample. <span style=\"color: #3366ff;\">split<\/span> (df$any_column_name, SplitRatio = <span style=\"color: #008000;\">0.7<\/span> )\ntrain &lt;- subset(df, sample == <span style=\"color: #008000;\">TRUE<\/span> )\ntest &lt;- subset(df, sample == <span style=\"color: #008000;\">FALSE<\/span> )<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: dplyr paketini kullanma<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (dplyr)<\/span>\n\n#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#create ID column\n<\/span>df$id &lt;- 1:nrow(df)\n\n<span style=\"color: #008080;\">#use 70% of dataset as training set and 30% as test set<\/span>\ntrain &lt;- df %&gt;% dplyr::sample_frac( <span style=\"color: #008000;\">0.70<\/span> )\ntest &lt;- dplyr::anti_join(df, train, by = ' <span style=\"color: #ff0000;\">id<\/span> ')<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, R&#8217;deki yerle\u015fik <a href=\"https:\/\/statorials.org\/tr\/iris-r-veri-kumesi\/\" target=\"_blank\" rel=\"noopener\">iris veri k\u00fcmesiyle<\/a> her y\u00f6ntemin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Base R&#8217;yi kullanarak verileri e\u011fitim ve test setlerine ay\u0131r\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, sat\u0131rlar\u0131n %70&#8217;ini e\u011fitim seti ve geri kalan %30&#8217;unu test seti olarak kullanarak iris veri setini bir e\u011fitim ve test setine b\u00f6lmek i\u00e7in R taban\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load iris dataset\n<\/span>data(iris)\n\n<span style=\"color: #008080;\">#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#Use 70% of dataset as training set and remaining 30% as testing set\n<\/span>sample &lt;- sample(c( <span style=\"color: #008000;\">TRUE<\/span> , <span style=\"color: #008000;\">FALSE<\/span> ), nrow(iris), replace= <span style=\"color: #008000;\">TRUE<\/span> , prob=c( <span style=\"color: #008000;\">0.7<\/span> , <span style=\"color: #008000;\">0.3<\/span> ))\ntrain &lt;- iris[sample, ]\ntest &lt;- iris[!sample, ]\n\n<span style=\"color: #008080;\">#view dimensions of training set\n<\/span>sun(train)\n\n[1] 106 5\n\n<span style=\"color: #008080;\">#view dimensions of test set\n<\/span>dim(test)\n\n[1] 44 5<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Sonu\u00e7tan \u015funu g\u00f6rebiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">E\u011fitim seti 106 sat\u0131r ve 5 s\u00fctundan olu\u015fan bir veri \u00e7er\u00e7evesidir.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Test 44 sat\u0131r ve 5 s\u00fctundan olu\u015fan bir veri blo\u011fudur.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Orijinal veritaban\u0131 toplamda 150 sat\u0131ra sahip oldu\u011fundan e\u011fitim seti orijinal sat\u0131rlar\u0131n yakla\u015f\u0131k 106\/150 = %70,6&#8217;s\u0131n\u0131 i\u00e7ermektedir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0130stersek e\u011fitim setinin ilk birka\u00e7 sat\u0131r\u0131n\u0131 da g\u00f6r\u00fcnt\u00fcleyebiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#view first few rows of training set\n<\/span>head(train)\n\n  Sepal.Length Sepal.Width Petal.Length Petal.Width Species\n1 5.1 3.5 1.4 0.2 setosa\n2 4.9 3.0 1.4 0.2 setosa\n3 4.7 3.2 1.3 0.2 setosa\n5 5.0 3.6 1.4 0.2 setosa\n8 5.0 3.4 1.5 0.2 setosa\n9 4.4 2.9 1.4 0.2 setosa\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: caTools&#8217;u kullanarak verileri e\u011fitim ve test setlerine ay\u0131r\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, sat\u0131rlar\u0131n %70&#8217;ini e\u011fitim seti ve geri kalan %30&#8217;unu test seti olarak kullanarak iris veri setini bir e\u011fitim ve test setine b\u00f6lmek i\u00e7in R&#8217;deki <strong>caTools<\/strong> paketinin 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;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (caTools)<\/span>\n\n#load iris dataset\n<\/span>data(iris)\n\n<span style=\"color: #008080;\">#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#Use 70% of dataset as training set and remaining 30% as testing set\n<\/span>sample &lt;- sample. <span style=\"color: #3366ff;\">split<\/span> (iris$Species, SplitRatio = <span style=\"color: #008000;\">0.7<\/span> )\ntrain &lt;- subset(iris, sample == <span style=\"color: #008000;\">TRUE<\/span> )\ntest &lt;- subset(iris, sample == <span style=\"color: #008000;\">FALSE<\/span> )\n\n<span style=\"color: #008080;\">#view dimensions of training set\n<\/span>sun(train)\n\n[1] 105 5\n\n<span style=\"color: #008080;\">#view dimensions of test set\n<\/span>dim(test)\n\n[1] 45 5<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Sonu\u00e7tan \u015funu g\u00f6rebiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">E\u011fitim seti 105 sat\u0131r ve 5 s\u00fctundan olu\u015fan bir veri \u00e7er\u00e7evesidir.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Test 45 sat\u0131r ve 5 s\u00fctundan olu\u015fan bir veri blo\u011fudur.<\/span><\/li>\n<\/ul>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: dplyr kullanarak verileri e\u011fitim ve test k\u00fcmelerine b\u00f6lme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, sat\u0131rlar\u0131n %70&#8217;ini e\u011fitim seti ve geri kalan %30&#8217;unu test seti olarak kullanarak iris veri setini bir e\u011fitim ve test setine b\u00f6lmek i\u00e7in R&#8217;deki <strong>caTools<\/strong> paketinin 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;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (dplyr)<\/span>\n\n#load iris dataset\n<\/span>data(iris)\n\n<span style=\"color: #008080;\">#make this example reproducible\n<\/span>set. <span style=\"color: #3366ff;\">seeds<\/span> (1)\n\n<span style=\"color: #008080;\">#create variable ID\n<\/span>iris$id &lt;- 1:nrow(iris)\n\n<span style=\"color: #008080;\">#Use 70% of dataset as training set and remaining 30% as testing set<\/span> \ntrain &lt;- iris %&gt;% dplyr::sample_frac( <span style=\"color: #008000;\">0.7<\/span> )\ntest &lt;- dplyr::anti_join(iris, train, by = ' <span style=\"color: #ff0000;\">id<\/span> ')\n\n<span style=\"color: #008080;\">#view dimensions of training set\n<\/span>sun(train)\n\n[1] 105 6\n\n<span style=\"color: #008080;\">#view dimensions of test set\n<\/span>dim(test)\n\n[1] 45 6\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Sonu\u00e7tan \u015funu g\u00f6rebiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">E\u011fitim seti 105 sat\u0131r ve 6 s\u00fctundan olu\u015fan bir veri \u00e7er\u00e7evesidir.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Test 45 sat\u0131r ve 6 s\u00fctundan olu\u015fan bir veri blo\u011fudur.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bu e\u011fitim ve test setlerinin, olu\u015fturdu\u011fumuz ek bir &#8220;id&#8221; s\u00fctunu i\u00e7erdi\u011fini unutmay\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Makine \u00f6\u011frenimi algoritman\u0131z\u0131 ayarlarken bu s\u00fctunu kullanmad\u0131\u011f\u0131n\u0131zdan (veya veri \u00e7er\u00e7evelerinden tamamen kald\u0131rmad\u0131\u011f\u0131n\u0131zdan) emin olun.<\/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-mse-nasil-hesaplanir\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de MSE nas\u0131l hesaplan\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rde-rmse-nasil-hesaplanir\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de RMSE nas\u0131l hesaplan\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-r-kareler-uyar\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de d\u00fczeltilmi\u015f R-kare nas\u0131l hesaplan\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Genellikle makine \u00f6\u011frenimi algoritmalar\u0131n\u0131 veri k\u00fcmelerine uyarlad\u0131\u011f\u0131m\u0131zda, \u00f6ncelikle veri k\u00fcmesini bir e\u011fitim seti ve bir test seti olarak ikiye ay\u0131r\u0131r\u0131z. R&#8217;de verileri e\u011fitim ve test k\u00fcmelerine b\u00f6lmenin \u00fc\u00e7 yayg\u0131n yolu vard\u0131r: Y\u00f6ntem 1: Base R&#8217;yi kullan\u0131n #make this example reproducible set. seeds (1) #use 70% of dataset as training set and 30% as test set [&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-3044","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 Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#039;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi 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\/bolunmus-r-test-treni\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#039;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T11:54:34+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\/bolunmus-r-test-treni\/\",\"url\":\"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/\",\"name\":\"R&#39;de Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-19T11:54:34+00:00\",\"dateModified\":\"2023-07-19T11:54:34+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#39;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"E\u011fitimde veriler nas\u0131l b\u00f6l\u00fcn\u00fcr &amp; #038; r&#39;deki test setleri (3 y\u00f6ntem)\"}]},{\"@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 Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials","description":"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#39;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi 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\/bolunmus-r-test-treni\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials","og_description":"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#39;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/","og_site_name":"Statorials","article_published_time":"2023-07-19T11:54:34+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\/bolunmus-r-test-treni\/","url":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/","name":"R&#39;de Veriler E\u011fitim ve Test Setlerine Nas\u0131l Ayr\u0131l\u0131r (3 Y\u00f6ntem) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-19T11:54:34+00:00","dateModified":"2023-07-19T11:54:34+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, \u00fc\u00e7 farkl\u0131 y\u00f6ntem kullan\u0131larak verilerin R&#39;de e\u011fitim ve test k\u00fcmelerine nas\u0131l b\u00f6l\u00fcnece\u011fi a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/bolunmus-r-test-treni\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"E\u011fitimde veriler nas\u0131l b\u00f6l\u00fcn\u00fcr &amp; #038; r&#39;deki test setleri (3 y\u00f6ntem)"}]},{"@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\/3044","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=3044"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3044\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3044"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3044"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3044"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}