{"id":1183,"date":"2023-07-27T09:13:26","date_gmt":"2023-07-27T09:13:26","guid":{"rendered":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/"},"modified":"2023-07-27T09:13:26","modified_gmt":"2023-07-27T09:13:26","slug":"dizeleri-rdeki-tarihlere-donustur","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/","title":{"rendered":"R&#39;de dizeleri tarihlere d\u00f6n\u00fc\u015ft\u00fcrme (\u00f6rneklerle)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Genellikle tarih ve saat verilerini R&#8217;ye aktard\u0131\u011f\u0131n\u0131zda de\u011ferler dize olarak i\u00e7e aktar\u0131l\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">R&#8217;de dizeleri tarihlere d\u00f6n\u00fc\u015ft\u00fcrmenin en kolay yolu, a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanan <strong>as.Date()<\/strong> i\u015flevini kullanmakt\u0131r:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>like.Date(x, format)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Alt\u0131n:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x:<\/strong> Tek bir dize de\u011feri veya dize de\u011ferlerinin vekt\u00f6r\u00fc.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>format:<\/strong> Tarih i\u00e7in kullan\u0131lacak format. Varsay\u0131lan YYYY-AA-GG&#8217;dir.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Tarih bi\u00e7imi i\u00e7in kullan\u0131lacak mevcut ba\u011f\u0131ms\u0131z de\u011fi\u015fkenlerin tam listesini g\u00f6r\u00fcnt\u00fclemek i\u00e7in R&#8217;deki <strong>?strftime<\/strong> komutunu kullanabilirsiniz, ancak en yayg\u0131n olanlar\u0131 \u015funlard\u0131r:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>%d:<\/strong> Ondal\u0131k say\u0131 olarak ay\u0131n g\u00fcn\u00fc (01-31)<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>%m:<\/strong> Ondal\u0131k say\u0131 olarak ay (01-12)<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>%y:<\/strong> Y\u00fczy\u0131l\u0131 olmayan y\u0131l (\u00f6rne\u011fin 04)<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>%Y:<\/strong> Y\u00fczy\u0131l\u0131 i\u00e7eren y\u0131l (\u00f6rne\u011fin 2004)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde <strong>as.Date()<\/strong> fonksiyonunun pratik kullan\u0131m\u0131na ili\u015fkin birka\u00e7 \u00f6rnek g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Tek Bir Dizeyi Tarihe D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, tek bir dize de\u011ferinin tarihe 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;\">#create string value<\/span>\nx &lt;- c(\" <span style=\"color: #008000;\">2021-07-24<\/span> \")\n\n<span style=\"color: #008080;\">#convert string to date<\/span>\nnew &lt;- as.Date(x, format=\" <span style=\"color: #008000;\">%Y-%m-%d<\/span> \")\nnew\n\n[1] \"2021-07-24\"\n\n<span style=\"color: #008080;\">#check class of new variable\n<\/span>class(new)\n\n[1] \u201cDate\u201d\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: Dizelerden olu\u015fan bir vekt\u00f6r\u00fc tarihlere d\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, dizelerden olu\u015fan bir vekt\u00f6r\u00fcn tarihlere 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;\">#create vector of strings<\/span>\nx &lt;- c(\" <span style=\"color: #008000;\">2021-07-24<\/span> \", \" <span style=\"color: #008000;\">2021-07-26<\/span> \", \" <span style=\"color: #008000;\">2021-07-30<\/span> \")\n\n<span style=\"color: #008080;\">#convert string to date<\/span>\nnew &lt;- as.Date(x, format=\" <span style=\"color: #008000;\">%Y-%m-%d<\/span> \")\nnew\n\n[1] \"2021-07-24\" \"2021-07-26\" \"2021-07-30\"\n\n<span style=\"color: #008080;\">#check class of new variable\n<\/span>class(new)\n\n[1] \u201cDate\u201d<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: Veri \u00c7er\u00e7evesi S\u00fctunu Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri blok zincirlerinden olu\u015fan bir s\u00fctunun tarihlere 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;\">#create data frame<\/span>\ndf &lt;- data.frame(day = c(\" <span style=\"color: #008000;\">2021-07-24<\/span> \", \" <span style=\"color: #008000;\">2021-07-26<\/span> \", \" <span style=\"color: #008000;\">2021-07-30<\/span> \"),\n                 sales=c(22, 25, 28),\n                 products=c(3, 6, 7))\n\n<span style=\"color: #008080;\">#view structure of data frame\n<\/span>str(df)\n\n'data.frame': 3 obs. of 3 variables:\n $ day: Factor w\/ 3 levels \"2021-07-24\",\"2021-07-26\",..: 1 2 3\n $ sales: num 22 25 28\n $products: num 3 6 7\n\n<span style=\"color: #008080;\">#convert <i>day<\/i> variable to date<\/span>\ndf$day &lt;- as.Date(df$day, format=\" <span style=\"color: #008000;\">%Y-%m-%d<\/span> \")\n\n<span style=\"color: #008080;\">#view structure of new data frame\n<\/span>str(df)\n\n'data.frame': 3 obs. of 3 variables:\n $day: Date, format: \"2021-07-24\" \"2021-07-26\" ...\n $ sales: num 22 25 28\n $products: num 3 6 7\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>\u00d6rnek 4: Birden \u00c7ok Tarih \u00c7er\u00e7evesi S\u00fctunu Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, birden fazla veri blok zinciri s\u00fctununun tarihlere 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;\">#create data frame<\/span>\ndf &lt;- data.frame(start = c(\" <span style=\"color: #008000;\">2021-07-24<\/span> \", \" <span style=\"color: #008000;\">2021-07-26<\/span> \", \" <span style=\"color: #008000;\">2021-07-30<\/span> \"),\n                 end = c(\" <span style=\"color: #008000;\">2021-07-25<\/span> \", \" <span style=\"color: #008000;\">2021-07-28<\/span> \", \" <span style=\"color: #008000;\">2021-08-02<\/span> \"),\n                 products=c(3, 6, 7))\n\n<span style=\"color: #008080;\">#view structure of data frame\n<\/span>str(df)\n\n'data.frame': 3 obs. of 3 variables:\n $ start: Factor w\/ 3 levels \"2021-07-24\",\"2021-07-26\",..: 1 2 3\n $ end: Factor w\/ 3 levels \"2021-07-25\",\"2021-07-28\",..: 1 2 3\n $products: num 3 6 7\n\n<span style=\"color: #008080;\">#convert <i>start<\/i> and <em>end<\/em> variables to date<\/span>\ndf[,c(' <span style=\"color: #008000;\">start<\/span> ', ' <span style=\"color: #008000;\">end<\/span> ')] = <span style=\"color: #3366ff;\">lapply<\/span> (df[,c(' <span style=\"color: #008000;\">start<\/span> ', ' <span style=\"color: #008000;\">end<\/span> ')],\n                                function(x) as.Date(x, format=\" <span style=\"color: #008000;\">%Y-%m-%d<\/span> \"))\n\n<span style=\"color: #008080;\">#view structure of new data frame\n<\/span>str(df)\n\n'data.frame': 3 obs. of 3 variables:\n $start: Date, format: \"2021-07-24\" \"2021-07-26\" ...\n $end: Date, format: \"2021-07-25\" \"2021-07-28\" ...\n $products: num 3 6 7<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu \u00f6rnekte kullan\u0131lan <strong>lapply()<\/strong> i\u015flevi hakk\u0131nda daha fazla bilgiyi <a href=\"https:\/\/statorials.org\/tr\/rde-lapply-sapply-ve-tapply-uygulama-kilavuzu\/\" target=\"_blank\" rel=\"noopener noreferrer\">buradan<\/a> edinebilirsiniz.<\/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\u011fitimler, R&#8217;de tarihlerle nas\u0131l \u00e7al\u0131\u015f\u0131laca\u011f\u0131na ili\u015fkin ek bilgiler sunar:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/r-tarih-formati\/\" target=\"_blank\" rel=\"noopener\">R&#8217;deki Tarih Formatlar\u0131na \u0130li\u015fkin Tam K\u0131lavuz<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rde-tarihe-gore-sirala\/\" target=\"_blank\" rel=\"noopener noreferrer\">R&#8217;de bir veri \u00e7er\u00e7evesi tarihe g\u00f6re nas\u0131l s\u0131ralan\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-tarihten-yili-cikar\/\" target=\"_blank\" rel=\"noopener noreferrer\">R&#8217;deki tarihten y\u0131l nas\u0131l \u00e7\u0131kar\u0131l\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Genellikle tarih ve saat verilerini R&#8217;ye aktard\u0131\u011f\u0131n\u0131zda de\u011ferler dize olarak i\u00e7e aktar\u0131l\u0131r. R&#8217;de dizeleri tarihlere d\u00f6n\u00fc\u015ft\u00fcrmenin en kolay yolu, a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanan as.Date() i\u015flevini kullanmakt\u0131r: like.Date(x, format) Alt\u0131n: x: Tek bir dize de\u011feri veya dize de\u011ferlerinin vekt\u00f6r\u00fc. format: Tarih i\u00e7in kullan\u0131lacak format. Varsay\u0131lan YYYY-AA-GG&#8217;dir. Tarih bi\u00e7imi i\u00e7in kullan\u0131lacak mevcut ba\u011f\u0131ms\u0131z de\u011fi\u015fkenlerin tam listesini g\u00f6r\u00fcnt\u00fclemek i\u00e7in [&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-1183","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 Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, R&#039;de dizelerin tarihlere 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\/dizeleri-rdeki-tarihlere-donustur\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, R&#039;de dizelerin tarihlere 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\/dizeleri-rdeki-tarihlere-donustur\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T09:13:26+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\/dizeleri-rdeki-tarihlere-donustur\/\",\"url\":\"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/\",\"name\":\"R&#39;de Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-27T09:13:26+00:00\",\"dateModified\":\"2023-07-27T09:13:26+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, R&#39;de dizelerin tarihlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de dizeleri tarihlere d\u00f6n\u00fc\u015ft\u00fcrme (\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 Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)","description":"Bu e\u011fitimde, R&#39;de dizelerin tarihlere 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\/dizeleri-rdeki-tarihlere-donustur\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)","og_description":"Bu e\u011fitimde, R&#39;de dizelerin tarihlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/","og_site_name":"Statorials","article_published_time":"2023-07-27T09:13:26+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\/dizeleri-rdeki-tarihlere-donustur\/","url":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/","name":"R&#39;de Dizeleri Tarihlere D\u00f6n\u00fc\u015ft\u00fcrme (\u00d6rneklerle)","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-27T09:13:26+00:00","dateModified":"2023-07-27T09:13:26+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, R&#39;de dizelerin tarihlere nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/dizeleri-rdeki-tarihlere-donustur\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de dizeleri tarihlere d\u00f6n\u00fc\u015ft\u00fcrme (\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\/1183","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=1183"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/1183\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=1183"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=1183"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=1183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}