{"id":3899,"date":"2023-07-14T21:31:01","date_gmt":"2023-07-14T21:31:01","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/"},"modified":"2023-07-14T21:31:01","modified_gmt":"2023-07-14T21:31:01","slug":"r-ifelse-sayisal-tarih","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/","title":{"rendered":"C: ifelse() i\u015flevinin tarihi say\u0131sal de\u011fere d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R taban\u0131ndaki <strong>ifelse()<\/strong> i\u015flevi, tarih nesnelerini varsay\u0131lan olarak say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcr\u00fcr.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bunun olmas\u0131n\u0131 \u00f6nlemek i\u00e7in alternatif olarak a\u015fa\u011f\u0131daki y\u00f6ntemlerden birini kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Base R&#8217;de as.character() i\u015flevini kullan\u0131n<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df$date &lt;- as. <span style=\"color: #3366ff;\">Date<\/span> (ifelse(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ',\n                   as. <span style=\"color: #3366ff;\">character<\/span> (df$date+5),\n                   as. <span style=\"color: #3366ff;\">character<\/span> (df$date)))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: dplyr&#8217;de if_else() i\u015flevini kullan\u0131n<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df$date &lt;- if_else(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ', df$date+5, df$date)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: data.table&#8217;da fifelse() i\u015flevini kullan\u0131n<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>df$date &lt;- fifelse(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ', df$date+5, df$date)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, R&#8217;deki a\u015fa\u011f\u0131daki veri \u00e7er\u00e7evesiyle her y\u00f6ntemin pratikte 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<\/span>\ndf &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (date=as. <span style=\"color: #3366ff;\">Date<\/span> (c('2022-01-05', '2022-01-17', '2022-01-22',\n                        '2022-01-23', '2022-01-29', '2022-02-13')),\n                 sales=c(22, 35, 24, 20, 16, 19))\n\n<span style=\"color: #008080;\">#view data frame\n<\/span>df\n\n        dirty date\n1 2022-01-05 22\n2 2022-01-17 35\n3 2022-01-22 24\n4 2022-01-23 20\n5 2022-01-29 16\n6 2022-02-13 19\n<\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: R Taban\u0131nda as.character() i\u015flevini kullan\u0131n<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri \u00e7er\u00e7evesinin <strong>tarih<\/strong> s\u00fctununda bir if else ifadesi ger\u00e7ekle\u015ftirmek ve sonu\u00e7 olarak bir tarih \u00fcretmek i\u00e7in <strong>as.character()<\/strong> i\u015flevinin R base <strong>ifelse()<\/strong> i\u015fleviyle 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;\">#if date is before 2022-01-20 then add 5 days<\/span>\ndf$date &lt;- as. <span style=\"color: #3366ff;\">Date<\/span> (ifelse(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ',\n                   as. <span style=\"color: #3366ff;\">character<\/span> (df$date+5),\n                   as. <span style=\"color: #3366ff;\">character<\/span> (df$date)))\n\n<span style=\"color: #008080;\">#view updated data frame<\/span>\ndf\n\n        dirty dates\n1 2022-01-10 22\n2 2022-01-22 35\n3 2022-01-22 24\n4 2022-01-23 20\n5 2022-01-29 16\n6 2022-02-13 19\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctunundaki bir de\u011fer 20.01.2022 tarihinden \u00f6nceyse tarihe be\u015f g\u00fcn ekledik.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctununun say\u0131 bi\u00e7imine d\u00f6n\u00fc\u015ft\u00fcr\u00fclmek yerine tarih bi\u00e7imini korudu\u011funu unutmay\u0131n.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: dplyr&#8217;de if_else() i\u015flevini kullan\u0131n<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri \u00e7er\u00e7evesindeki <strong>tarih<\/strong> s\u00fctununda bir if else ifadesini ger\u00e7ekle\u015ftirmek ve sonu\u00e7 olarak bir tarih \u00fcretmek i\u00e7in dplyr&#8217;in <strong>if_else()<\/strong> i\u015flevinin 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#if date is before 2022-01-20 then add 5 days<\/span>\ndf$date &lt;- if_else(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ', df$date+5, df$date)\n\n<span style=\"color: #008080;\">#view updated data frame<\/span>\ndf\n\n        dirty date\n1 2022-01-10 22\n2 2022-01-22 35\n3 2022-01-22 24\n4 2022-01-23 20\n5 2022-01-29 16\n6 2022-02-13 19\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctunundaki bir de\u011fer 20.01.2022 tarihinden \u00f6nceyse tarihe be\u015f g\u00fcn ekledik.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctununun say\u0131 bi\u00e7imine d\u00f6n\u00fc\u015ft\u00fcr\u00fclmek yerine tarih bi\u00e7imini korudu\u011funu unutmay\u0131n.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: data.table&#8217;da fifelse() i\u015flevini kullan\u0131n<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, veri \u00e7er\u00e7evesindeki <strong>tarih<\/strong> s\u00fctununda bir if else ifadesini ger\u00e7ekle\u015ftirmek ve sonu\u00e7 olarak bir tarih \u00fcretmek i\u00e7in data.table&#8217;\u0131n <strong>fifelse()<\/strong> i\u015flevinin 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> (data.table)<\/span>\n\n#if date is before 2022-01-20 then add 5 days<\/span>\ndf$date &lt;- fifelse(df$date &lt; ' <span style=\"color: #ff0000;\">2022-01-20<\/span> ', df$date+5, df$date)\n\n<span style=\"color: #008080;\">#view updated data frame<\/span>\ndf\n\n        dirty dates\n1 2022-01-10 22\n2 2022-01-22 35\n3 2022-01-22 24\n4 2022-01-23 20\n5 2022-01-29 16\n6 2022-02-13 19\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctunundaki bir de\u011fer 20.01.2022 tarihinden \u00f6nceyse tarihe be\u015f g\u00fcn ekledik.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Tarih<\/strong> s\u00fctunu yine say\u0131 bi\u00e7imine d\u00f6n\u00fc\u015ft\u00fcr\u00fclmek yerine tarih bi\u00e7imini korudu.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : \u00c7ok b\u00fcy\u00fck veri \u00e7er\u00e7eveleri i\u00e7in dplyr ve data.table y\u00f6ntemleri temel R y\u00f6nteminden daha h\u0131zl\u0131 olacakt\u0131r.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimlerde R&#8217;de di\u011fer ortak g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/rde-ifelse-yuvalanmis\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de yuvalanm\u0131\u015f If Else ifadesi nas\u0131l yaz\u0131l\u0131r?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-vaka-bildirimi\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de bir vaka ifadesi nas\u0131l yaz\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/rdeki-veri-cercevesine-birden-fazla-sutun-ekleyin\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de veri \u00e7er\u00e7evesine birden fazla s\u00fctun nas\u0131l eklenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R taban\u0131ndaki ifelse() i\u015flevi, tarih nesnelerini varsay\u0131lan olarak say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcr\u00fcr. Bunun olmas\u0131n\u0131 \u00f6nlemek i\u00e7in alternatif olarak a\u015fa\u011f\u0131daki y\u00f6ntemlerden birini kullanabilirsiniz: Y\u00f6ntem 1: Base R&#8217;de as.character() i\u015flevini kullan\u0131n df$date &lt;- as. Date (ifelse(df$date &lt; &#8216; 2022-01-20 &#8216;, as. character (df$date+5), as. character (df$date))) Y\u00f6ntem 2: dplyr&#8217;de if_else() i\u015flevini kullan\u0131n df$date &lt;- if_else(df$date &lt; &#8216; 2022-01-20 [&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-3899","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>C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, R&#039;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\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\/r-ifelse-sayisal-tarih\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, R&#039;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\u011fi a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-14T21:31:01+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-ifelse-sayisal-tarih\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/\",\"name\":\"C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-14T21:31:01+00:00\",\"dateModified\":\"2023-07-14T21:31:01+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, R&#39;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\u011fi a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C: ifelse() i\u015flevinin tarihi say\u0131sal de\u011fere d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin\"}]},{\"@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":"C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials","description":"Bu e\u011fitimde, R&#39;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\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\/r-ifelse-sayisal-tarih\/","og_locale":"tr_TR","og_type":"article","og_title":"C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials","og_description":"Bu e\u011fitimde, R&#39;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\u011fi a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/","og_site_name":"Statorials","article_published_time":"2023-07-14T21:31:01+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-ifelse-sayisal-tarih\/","url":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/","name":"C: ifelse() fonksiyonunun bir tarihi say\u0131sala d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-14T21:31:01+00:00","dateModified":"2023-07-14T21:31:01+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, R&#39;deki ifelse() i\u015flevinin tarih nesnelerini say\u0131sal nesnelere d\u00f6n\u00fc\u015ft\u00fcrmesinin \u00f6rnekler de dahil olmak \u00fczere nas\u0131l \u00f6nlenece\u011fi a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-ifelse-sayisal-tarih\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"C: ifelse() i\u015flevinin tarihi say\u0131sal de\u011fere d\u00f6n\u00fc\u015ft\u00fcrmesini \u00f6nleyin"}]},{"@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\/3899","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=3899"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3899\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}