{"id":2283,"date":"2023-07-22T22:58:19","date_gmt":"2023-07-22T22:58:19","guid":{"rendered":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/"},"modified":"2023-07-22T22:58:19","modified_gmt":"2023-07-22T22:58:19","slug":"kategorik-bir-degiskeni-sayisal-rye-donusturun","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/","title":{"rendered":"R&#39;de kategorik de\u011fi\u015fkenler say\u0131sala nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;de kategorik bir de\u011fi\u015fkeni say\u0131sal bir de\u011fi\u015fkene d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemlerden herhangi birini kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Kategorik De\u011fi\u015fkeni Say\u0131sala D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df$var1 &lt;- unclass(df$var1)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Birden \u00c7ok Kategorik De\u011fi\u015fkeni Say\u0131sal De\u011ferlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df[, c(' <span style=\"color: #ff0000;\">var1<\/span> ', ' <span style=\"color: #ff0000;\">var2<\/span> ')] &lt;- sapply(df[, c(' <span style=\"color: #ff0000;\">var1<\/span> ', ' <span style=\"color: #ff0000;\">var2<\/span> ')], unclass)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: T\u00fcm Kategorik De\u011fi\u015fkenleri Say\u0131sal De\u011ferlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df[sapply(df, is. <span style=\"color: #3366ff;\">factor<\/span> )] &lt;- data. <span style=\"color: #3366ff;\">matrix<\/span> (df[sapply(df, <span style=\"color: #3366ff;\">is.factor<\/span> )])<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, her y\u00f6ntemin 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 with some categorical variables\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (team=as. <span style=\"color: #3366ff;\">factor<\/span> (c('A', 'B', 'C', 'D')),\n                 conf=as. <span style=\"color: #3366ff;\">factor<\/span> (c('AL', 'AL', 'NL', 'NL')),\n                 win=as. <span style=\"color: #3366ff;\">factor<\/span> (c('Yes', 'No', 'No', 'Yes')),\n                 dots=c(122, 98, 106, 115))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n  team conf win points\n1 A AL Yes 122\n2 B AL No 98\n3 C NL No 106\n4 D NL Yes 115\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Kategorik De\u011fi\u015fkeni Say\u0131sala D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri \u00e7er\u00e7evesindeki kategorik bir de\u011fi\u015fkenin say\u0131sal bir de\u011fi\u015fkene nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini 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: #008080;\">#convert 'team' variable to numeric\n<\/span>df$team &lt;- unclass(df$team)\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n  team conf win points\n1 1 AL Yes 122\n2 2 AL No. 98\n3 3 NL No 106\n4 4 NL Yes 115\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u201cTak\u0131m\u201d de\u011fi\u015fkeninin de\u011ferlerinin say\u0131sal de\u011ferlere d\u00f6n\u00fc\u015ft\u00fcr\u00fcld\u00fc\u011f\u00fcn\u00fc unutmay\u0131n.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Birden \u00c7ok Kategorik De\u011fi\u015fkeni Say\u0131sal De\u011ferlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir veri \u00e7er\u00e7evesindeki birden \u00e7ok kategorik de\u011fi\u015fkenin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini 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: #008080;\">#convert 'team' and 'win' variables to numeric\n<\/span>df[, c(' <span style=\"color: #ff0000;\">team<\/span> ', ' <span style=\"color: #ff0000;\">win<\/span> ')] &lt;- sapply(df[, c(' <span style=\"color: #ff0000;\">team<\/span> ', ' <span style=\"color: #ff0000;\">win<\/span> ')], unclass)\n\n<span style=\"color: #008080;\">#view updated data frame\n<\/span>df\n\n  team conf win points\n1 1 AL 2 122\n2 2 AL 1 98\n3 3 NL 1,106\n4 4 NL 2 115\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u201cTak\u0131m\u201d ve \u201cgalibiyet\u201d de\u011fi\u015fkenlerinin de\u011ferlerinin say\u0131sal de\u011ferlere d\u00f6n\u00fc\u015ft\u00fcr\u00fcld\u00fc\u011f\u00fcn\u00fc unutmay\u0131n.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: T\u00fcm Kategorik De\u011fi\u015fkenleri Say\u0131sal De\u011ferlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir veri \u00e7er\u00e7evesindeki t\u00fcm kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini 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: #008080;\">#convert all categorical variables to numeric\n<\/span>df[sapply(df, is. <span style=\"color: #3366ff;\">factor<\/span> )] &lt;- data. <span style=\"color: #3366ff;\">matrix<\/span> (df[sapply(df, <span style=\"color: #3366ff;\">is.factor<\/span> )])\n<span style=\"color: #008080;\">\n#view updated data frame\n<\/span>df\n\n  team conf win points\n1 1 1 2 122\n2 2 1 1 98\n3 3 2 1 106\n4 4 2 2 115\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Veri \u00e7er\u00e7evesindeki kategorik de\u011fi\u015fkenlerin her birinin de\u011ferlerinin say\u0131sal de\u011ferlere d\u00f6n\u00fc\u015ft\u00fcr\u00fcld\u00fc\u011f\u00fcn\u00fc 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 d\u00f6n\u00fc\u015f\u00fcmlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/r-tarihi-sayisala-donustur\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir tarihin say\u0131sala d\u00f6n\u00fc\u015ft\u00fcr\u00fclmesi<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rye-dahil-edilecek-karakter\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir karakter bir fakt\u00f6re nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?<\/a><br \/><a href=\"https:\/\/statorials.org\/tr\/karakter-faktorunu-rye-donustur\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de fakt\u00f6r karaktere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;de kategorik bir de\u011fi\u015fkeni say\u0131sal bir de\u011fi\u015fkene d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemlerden herhangi birini kullanabilirsiniz: Y\u00f6ntem 1: Kategorik De\u011fi\u015fkeni Say\u0131sala D\u00f6n\u00fc\u015ft\u00fcrme df$var1 &lt;- unclass(df$var1) Y\u00f6ntem 2: Birden \u00c7ok Kategorik De\u011fi\u015fkeni Say\u0131sal De\u011ferlere D\u00f6n\u00fc\u015ft\u00fcrme df[, c(&#8216; var1 &#8216;, &#8216; var2 &#8216;)] &lt;- sapply(df[, c(&#8216; var1 &#8216;, &#8216; var2 &#8216;)], unclass) Y\u00f6ntem 3: T\u00fcm Kategorik De\u011fi\u015fkenleri Say\u0131sal De\u011ferlere [&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-2283","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;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, R&#039;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\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\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R - Statorials&#039;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, R&#039;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T22:58:19+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\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/\",\"url\":\"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/\",\"name\":\"R - Statorials&#39;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-22T22:58:19+00:00\",\"dateModified\":\"2023-07-22T22:58:19+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, R&#39;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de kategorik de\u011fi\u015fkenler say\u0131sala nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?\"}]},{\"@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;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?","description":"Bu e\u011fitimde, R&#39;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\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\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/","og_locale":"tr_TR","og_type":"article","og_title":"R - Statorials&#39;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?","og_description":"Bu e\u011fitimde, R&#39;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/","og_site_name":"Statorials","article_published_time":"2023-07-22T22:58:19+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\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/","url":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/","name":"R - Statorials&#39;ta kategorik de\u011fi\u015fkenler say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-22T22:58:19+00:00","dateModified":"2023-07-22T22:58:19+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, R&#39;de kategorik de\u011fi\u015fkenlerin say\u0131sal de\u011fi\u015fkenlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/kategorik-bir-degiskeni-sayisal-rye-donusturun\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de kategorik de\u011fi\u015fkenler say\u0131sala nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr?"}]},{"@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\/2283","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=2283"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2283\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2283"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2283"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2283"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}