{"id":2495,"date":"2023-07-22T00:58:03","date_gmt":"2023-07-22T00:58:03","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/"},"modified":"2023-07-22T00:58:03","modified_gmt":"2023-07-22T00:58:03","slug":"r-pervane-masasi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/","title":{"rendered":"R&#39;de prop.table() fonksiyonu nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;deki <strong>prop.table()<\/strong> i\u015flevi, bir tablodaki her h\u00fccrenin de\u011ferini t\u00fcm de\u011ferlerle orant\u0131l\u0131 olarak hesaplamak i\u00e7in kullan\u0131labilir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu i\u015flev a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullan\u0131r:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>prop. <span style=\"color: #3366ff;\">table<\/span> (x, margin = <span style=\"color: #008000;\">NULL<\/span> )<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Alt\u0131n:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x<\/strong> : Tablo ad\u0131<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>kenar bo\u015flu\u011fu<\/strong> : B\u00f6l\u00fcnecek kenar bo\u015flu\u011fu (1 = sat\u0131r, 2 = s\u00fctun, varsay\u0131lan NULL&#8217;dur)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, bu fonksiyonun pratikte R&#8217;deki a\u015fa\u011f\u0131daki matrisle 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 matrix\n<\/span>x &lt;- matrix(1:6, nrow= <span style=\"color: #008000;\">2<\/span> )\n\n<span style=\"color: #008080;\">#view matrix\n<\/span>x\n\n     [,1] [,2] [,3]\n[1,] 1 3 5\n[2,] 2 4 6\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Prop.table&#8217;\u0131 marj = NULL ile kullan\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, b\u00f6l\u00fcnecek kenar bo\u015flu\u011funu belirtmeden <strong>prop.table() i\u015flevinin<\/strong> 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;\">prop. <span style=\"color: #3366ff;\">table<\/span> (x)\n\n           [,1] [,2] [,3]\n[1,] 0.04761905 0.1428571 0.2380952\n[2,] 0.09523810 0.1904762 0.2857143<\/span>\n<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Orijinal tablodaki t\u00fcm de\u011ferlerin toplam\u0131: 1 + 3 + 5 + 2 + 4 + 6 = 21.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>prop.table()<\/strong> i\u015flevi her bir de\u011feri b\u00fct\u00fcnle orant\u0131l\u0131 olarak g\u00f6r\u00fcnt\u00fcler.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u00d6rne\u011fin:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 1] = 1\/21 = <strong>0,0476<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 2] = 3\/21 = <strong>0,1428<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 3] = 5\/21 = <strong>0,2380<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 1] = 2\/21 = <strong>0,0952<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 2] = 4\/21 = <strong>0,1904<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [3, 2] = 6\/21 = <strong>0,2857<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>prop.table()<\/strong> \u00e7\u0131kt\u0131s\u0131ndaki t\u00fcm de\u011ferlerin toplam\u0131n\u0131n 1 oldu\u011funu unutmay\u0131n.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: Prop.table&#8217;\u0131 marj = 1 ile kullan\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, her bir de\u011feri sat\u0131r toplamlar\u0131na b\u00f6len <strong>prop.table()<\/strong> i\u015flevinin <strong>marj=1<\/strong> ile 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;\">prop. <span style=\"color: #3366ff;\">table<\/span> (x, margin = <span style=\"color: #008000;\">1<\/span> )\n\n          [,1] [,2] [,3]\n[1,] 0.1111111 0.3333333 0.5555556\n[2,] 0.1666667 0.3333333 0.5000000<\/span>\n<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Orijinal tablonun ilk sat\u0131r\u0131ndaki t\u00fcm de\u011ferlerin toplam\u0131: 1 + 3 + 5 = 9.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Orijinal tablonun ikinci sat\u0131r\u0131ndaki t\u00fcm de\u011ferlerin toplam\u0131: 2 + 4 + 6 = 12.<\/span><\/p>\n<p> <span style=\"color: #000000;\">B\u00f6ylece \u00e7\u0131kt\u0131, her bir de\u011feri sat\u0131rlar\u0131n toplam\u0131na orant\u0131l\u0131 olarak g\u00f6r\u00fcnt\u00fcler.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u00d6rne\u011fin:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 1] = 1\/9 = <strong>0,1111<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 2] = 3\/9 = <strong>0,3333<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 3] = 5\/9 = <strong>0,5555<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 1] = 2\/12 = <strong>0,1667<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 2] = 4\/12 = <strong>0,3333<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [3, 2] = 6\/12 = <strong>0,5000<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>prop.table()<\/strong> \u00e7\u0131kt\u0131s\u0131n\u0131n her sat\u0131r\u0131ndaki de\u011ferlerin toplam\u0131n\u0131n 1 oldu\u011funu unutmay\u0131n.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: Prop.table&#8217;\u0131 marj = 2 ile kullan\u0131n<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, her bir de\u011feri s\u00fctun toplamlar\u0131na b\u00f6len <strong>prop.table()<\/strong> i\u015flevinin <strong>marj=2<\/strong> ile 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;\">prop. <span style=\"color: #3366ff;\">table<\/span> (x, margin = <span style=\"color: #008000;\">2<\/span> )\n\n          [,1] [,2] [,3]\n[1,] 0.3333333 0.4285714 0.4545455\n[2,] 0.6666667 0.5714286 0.5454545<\/span>\n<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Orijinal tablonun ilk s\u00fctunundaki de\u011ferlerin toplam\u0131: 1 + 2 = 3.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Orijinal tablonun ikinci s\u00fctunundaki de\u011ferlerin toplam\u0131: 3 + 4 = 7.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Orijinal tablonun \u00fc\u00e7\u00fcnc\u00fc s\u00fctunundaki de\u011ferlerin toplam\u0131: 5 + 6 = 11.<\/span><\/p>\n<p> <span style=\"color: #000000;\">B\u00f6ylece \u00e7\u0131kt\u0131, her bir de\u011feri s\u00fctun toplam\u0131na orant\u0131l\u0131 olarak g\u00f6r\u00fcnt\u00fcler.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u00d6rne\u011fin:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 1] = 1\/3 = <strong>0,3333<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 1] = 2\/3 = <strong>0,6667<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 2] = 3\/7 = <strong>0,4285<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [2, 2] = 4\/7 = <strong>0,5714<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [1, 3] = 5\/11 = <strong>0,4545<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">H\u00fccre [3, 3] = 6\/11 = <strong>0,5454<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>prop.table()<\/strong> \u00e7\u0131kt\u0131s\u0131n\u0131n her s\u00fctunundaki de\u011ferlerin toplam\u0131n\u0131n 1 oldu\u011funu 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\/rdeki-frekans-tablosu\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de frekans tablolar\u0131 nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-bagil-frekans-tablosu\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de g\u00f6receli frekans tablolar\u0131 nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-acil-durum-tablosu\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir beklenmedik durum tablosu nas\u0131l olu\u015fturulur<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;deki prop.table() i\u015flevi, bir tablodaki her h\u00fccrenin de\u011ferini t\u00fcm de\u011ferlerle orant\u0131l\u0131 olarak hesaplamak i\u00e7in kullan\u0131labilir. Bu i\u015flev a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullan\u0131r: prop. table (x, margin = NULL ) Alt\u0131n: x : Tablo ad\u0131 kenar bo\u015flu\u011fu : B\u00f6l\u00fcnecek kenar bo\u015flu\u011fu (1 = sat\u0131r, 2 = s\u00fctun, varsay\u0131lan NULL&#8217;dur) A\u015fa\u011f\u0131daki \u00f6rnekler, bu fonksiyonun pratikte R&#8217;deki a\u015fa\u011f\u0131daki matrisle [&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-2495","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 prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde prop.table() fonksiyonunun R&#039;de nas\u0131l kullan\u0131laca\u011f\u0131 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-pervane-masasi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde prop.table() fonksiyonunun R&#039;de nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-pervane-masasi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T00:58:03+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=\"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-pervane-masasi\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-pervane-masasi\/\",\"name\":\"R&#39;de prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-22T00:58:03+00:00\",\"dateModified\":\"2023-07-22T00:58:03+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde prop.table() fonksiyonunun R&#39;de nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-pervane-masasi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-pervane-masasi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-pervane-masasi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de prop.table() fonksiyonu nas\u0131l kullan\u0131l\u0131r (\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 prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials","description":"Bu e\u011fitimde prop.table() fonksiyonunun R&#39;de nas\u0131l kullan\u0131laca\u011f\u0131 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-pervane-masasi\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials","og_description":"Bu e\u011fitimde prop.table() fonksiyonunun R&#39;de nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/","og_site_name":"Statorials","article_published_time":"2023-07-22T00:58:03+00:00","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-pervane-masasi\/","url":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/","name":"R&#39;de prop.table() i\u015flevi nas\u0131l kullan\u0131l\u0131r (\u00f6rneklerle) \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-22T00:58:03+00:00","dateModified":"2023-07-22T00:58:03+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde prop.table() fonksiyonunun R&#39;de nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-pervane-masasi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-pervane-masasi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de prop.table() fonksiyonu nas\u0131l kullan\u0131l\u0131r (\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\/2495","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=2495"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2495\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}