{"id":4503,"date":"2023-07-10T14:25:59","date_gmt":"2023-07-10T14:25:59","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/"},"modified":"2023-07-10T14:25:59","modified_gmt":"2023-07-10T14:25:59","slug":"r-dosyalari-tarihe-gore-listeleyin","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/","title":{"rendered":"R&#39;de dosyalar\u0131 tarihe g\u00f6re listeleme (\u00f6rnek ile)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;deki ge\u00e7erli \u00e7al\u0131\u015fma dizinindeki dosyalar\u0131 tarihe g\u00f6re listelemek i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#extract all CSV files in working directory\n<\/span>file_info = file. <span style=\"color: #3366ff;\">info<\/span> ( <span style=\"color: #3366ff;\">list.files<\/span> (pattern=\" <span style=\"color: #ff0000;\">*.csv<\/span> \"))\n\n<span style=\"color: #008080;\">#sort files based on mtime (date and time modification)\n<\/span>file_info = file_info[ <span style=\"color: #008000;\">with<\/span> (file_info, <span style=\"color: #008000;\">order<\/span> (as. <span style=\"color: #3366ff;\">POSIXct<\/span> (mtime))), ]\n\n<span style=\"color: #008080;\">#view only file names with modification date and time\n<\/span>file_info[c(\" <span style=\"color: #ff0000;\">mtime<\/span> \")]\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnek, bu s\u00f6zdiziminin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek: R&#8217;de dosyalar tarihe g\u00f6re nas\u0131l listelenir?<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/tr\/rde-setwd-getwd\/\" target=\"_blank\" rel=\"noopener\">Ge\u00e7erli \u00e7al\u0131\u015fma dizinindeki<\/a> t\u00fcm CSV dosyalar\u0131n\u0131 R&#8217;de tarihe g\u00f6re listelemek istedi\u011fimi varsayal\u0131m.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\">\u00d6ncelikle t\u00fcm CSV dosyalar\u0131n\u0131 (dosya bilgileriyle birlikte) ge\u00e7erli \u00e7al\u0131\u015fma dizininden \u00e7\u0131karmak i\u00e7in a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanabilirim:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#extract all CSV files in working directory\n<\/span>file_info = file. <span style=\"color: #3366ff;\">info<\/span> ( <span style=\"color: #3366ff;\">list.files<\/span> (pattern=\" <span style=\"color: #ff0000;\">*.csv<\/span> \"))\n\n<span style=\"color: #008080;\">#view all CSV files<\/span>\nfile_info\n\n                        size isdir mode mtime ctime atime exe\nbasketball_data.csv 55 FALSE 666 2023-01-06 11:07:43 2022-07-12 09:07:26 2023-04-18 09:42:19 no\ndf1.csv 126 FALSE 666 2022-04-21 10:48:24 2022-04-21 10:48:24 2023-04-18 09:42:19 no\ndf2.csv 126 FALSE 666 2022-04-21 10:48:30 2022-04-21 10:48:29 2023-04-18 09:42:19 no\ndf3.csv 126 FALSE 666 2022-04-21 10:48:34 2022-04-21 10:48:34 2023-04-18 09:42:19 no\nmy_data.csv 53 FALSE 666 2022-09-09 09:02:21 2022-04-22 09:00:13 2023-04-18 09:42:19 no\nmy_list.csv 90 FALSE 666 2022-04-21 09:40:01 2022-04-21 09:39:59 2023-04-18 09:42:19 no\nmy_test.csv 146 FALSE 666 2022-04-21 09:42:25 2022-04-21 09:42:25 2023-04-18 09:42:19 no\nplayer_stats.csv 137 FALSE 666 2023-04-11 09:07:20 2023-04-11 09:07:20 2023-04-18 09:42:19 no\nplayers_data.csv 50 FALSE 666 2023-01-06 09:44:12 2023-01-06 09:44:12 2023-04-18 09:42:19 no\nteam_info.csv 131 FALSE 666 2023-04-11 09:07:21 2023-04-11 09:07:21 2023-04-18 09:42:19 no\ntest.csv 18059168 FALSE 666 2022-09-07 09:07:34 2020-02-01 13:44:03 2023-04-18 09:42:19 no\nuneven_data.csv 43 FALSE 666 2023-01-06 14:02:17 2023-01-06 14:00:27 2023-04-18 09:42:19 no\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Daha sonra dosyalar\u0131 <strong>mtime&#8217;a<\/strong> g\u00f6re s\u0131ralamak i\u00e7in <strong>order()<\/strong> i\u015flevini kullanabilirim; bu, dosyalar\u0131n en son de\u011fi\u015ftirildi\u011fi tarih ve saati temsil eder:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#sort files based on mtime (date and time modification)\n<\/span>file_info = file_info[ <span style=\"color: #008000;\">with<\/span> (file_info, <span style=\"color: #008000;\">order<\/span> (as. <span style=\"color: #3366ff;\">POSIXct<\/span> (mtime))), ]\n\n<span style=\"color: #008080;\">#view sorted files<\/span>\nfile_info\n\n                        size isdir mode mtime ctime atime exe\nmy_list.csv 90 FALSE 666 2022-04-21 09:40:01 2022-04-21 09:39:59 2023-04-18 09:42:19 no\nmy_test.csv 146 FALSE 666 2022-04-21 09:42:25 2022-04-21 09:42:25 2023-04-18 09:42:19 no\ndf1.csv 126 FALSE 666 2022-04-21 10:48:24 2022-04-21 10:48:24 2023-04-18 09:42:19 no\ndf2.csv 126 FALSE 666 2022-04-21 10:48:30 2022-04-21 10:48:29 2023-04-18 09:42:19 no\ndf3.csv 126 FALSE 666 2022-04-21 10:48:34 2022-04-21 10:48:34 2023-04-18 09:42:19 no\ntest.csv 18059168 FALSE 666 2022-09-07 09:07:34 2020-02-01 13:44:03 2023-04-18 09:42:19 no\nmy_data.csv 53 FALSE 666 2022-09-09 09:02:21 2022-04-22 09:00:13 2023-04-18 09:42:19 no\nplayers_data.csv 50 FALSE 666 2023-01-06 09:44:12 2023-01-06 09:44:12 2023-04-18 09:42:19 no\nbasketball_data.csv 55 FALSE 666 2023-01-06 11:07:43 2022-07-12 09:07:26 2023-04-18 09:42:19 no\nuneven_data.csv 43 FALSE 666 2023-01-06 14:02:17 2023-01-06 14:00:27 2023-04-18 09:42:19 no\nplayer_stats.csv 137 FALSE 666 2023-04-11 09:07:20 2023-04-11 09:07:20 2023-04-18 09:42:19 no\nteam_info.csv 131 FALSE 666 2023-04-11 09:07:21 2023-04-11 09:07:21 2023-04-18 09:42:19 no\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Dosyalar\u0131 <em>olu\u015fturulma tarihine<\/em> g\u00f6re s\u0131ralamak istiyorsan\u0131z <strong>ctime&#8217;\u0131<\/strong> , <em>eri\u015fim tarihine<\/em> g\u00f6re s\u0131ralamak istiyorsan\u0131z <strong>atime&#8217;\u0131<\/strong> kullanabilece\u011finizi unutmay\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Son olarak, veri \u00e7er\u00e7evesini yaln\u0131zca dosya adlar\u0131n\u0131 ve bunlar\u0131n en son de\u011fi\u015ftirildi\u011fi tarih ve saati g\u00f6sterecek \u015fekilde alt k\u00fcmelere ay\u0131rabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#view only file names with modification date and time\n<\/span>file_info[c(\" <span style=\"color: #ff0000;\">mtime<\/span> \")]\n\n                                  mtime\nmy_list.csv 2022-04-21 09:40:01\nmy_test.csv 2022-04-21 09:42:25\ndf1.csv 2022-04-21 10:48:24\ndf2.csv 2022-04-21 10:48:30\ndf3.csv 2022-04-21 10:48:34\ntest.csv 2022-09-07 09:07:34\nmy_data.csv 2022-09-09 09:02:21\nplayers_data.csv 2023-01-06 09:44:12\nbasketball_data.csv 2023-01-06 11:07:43\nuneven_data.csv 2023-01-06 14:02:17\nplayer_stats.csv 2023-04-11 09:07:20\nteam_info.csv 2023-04-11 09:07:21\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u0130sterseniz yaln\u0131zca tarihe g\u00f6re dosya adlar\u0131n\u0131 da g\u00f6r\u00fcnt\u00fcleyebilirsiniz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#view only file names\n<\/span>rownames(file_info)\n\n [1] \"my_list.csv\" \"my_test.csv\" \"df1.csv\" \"df2.csv\" \"df3.csv\"            \n [6] \"test.csv\" \"my_data.csv\" \"players_data.csv\" \"basketball_data.csv\" \"uneven_data.csv\"    \n[11] \"player_stats.csv\" \"team_info.csv\"  \n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">On iki CSV dosya ad\u0131 tarihe g\u00f6re s\u0131ralanm\u0131\u015ft\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>\u0130lgili:<\/strong> <a href=\"https:\/\/statorials.org\/tr\/r-dosyalari-listesi\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de list.files() \u0130\u015flevinin Kullan\u0131m\u0131 (4 \u00d6rnek)<\/a><\/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> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/tr\/rdeki-zip-dosyasini-oku\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de Zip dosyalar\u0131 nas\u0131l okunur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/csvyi-r'ye-aktar\/\" target=\"_blank\" rel=\"noopener\">CSV dosyalar\u0131 R&#8217;ye nas\u0131l aktar\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/exceli-r'ye-aktar\/\" target=\"_blank\" rel=\"noopener\">Excel dosyalar\u0131 R&#8217;ye nas\u0131l aktar\u0131l\u0131r<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;deki ge\u00e7erli \u00e7al\u0131\u015fma dizinindeki dosyalar\u0131 tarihe g\u00f6re listelemek i\u00e7in a\u015fa\u011f\u0131daki temel s\u00f6zdizimini kullanabilirsiniz: #extract all CSV files in working directory file_info = file. info ( list.files (pattern=&#8221; *.csv &#8220;)) #sort files based on mtime (date and time modification) file_info = file_info[ with (file_info, order (as. POSIXct (mtime))), ] #view only file names with modification date [&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-4503","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 dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, R&#039;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \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-dosyalari-tarihe-gore-listeleyin\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, R&#039;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T14:25:59+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\/r-dosyalari-tarihe-gore-listeleyin\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/\",\"name\":\"R&#39;de dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-10T14:25:59+00:00\",\"dateModified\":\"2023-07-10T14:25:59+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, R&#39;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de dosyalar\u0131 tarihe g\u00f6re listeleme (\u00f6rnek ile)\"}]},{\"@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 dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials","description":"Bu e\u011fitimde, R&#39;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \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-dosyalari-tarihe-gore-listeleyin\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials","og_description":"Bu e\u011fitimde, R&#39;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/","og_site_name":"Statorials","article_published_time":"2023-07-10T14:25:59+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\/r-dosyalari-tarihe-gore-listeleyin\/","url":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/","name":"R&#39;de dosyalar tarihe g\u00f6re nas\u0131l listelenir (\u00f6rnekle) \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-10T14:25:59+00:00","dateModified":"2023-07-10T14:25:59+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, R&#39;de dosyalar\u0131n tarihe g\u00f6re nas\u0131l listelenece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-dosyalari-tarihe-gore-listeleyin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de dosyalar\u0131 tarihe g\u00f6re listeleme (\u00f6rnek ile)"}]},{"@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\/4503","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=4503"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/4503\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=4503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=4503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=4503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}