{"id":506,"date":"2023-07-29T16:40:17","date_gmt":"2023-07-29T16:40:17","guid":{"rendered":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/"},"modified":"2023-07-29T16:40:17","modified_gmt":"2023-07-29T16:40:17","slug":"en-iyi-ggplot2-temalari","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/","title":{"rendered":"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Bu e\u011fitim, a\u015fa\u011f\u0131dakiler dahil en iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir k\u0131lavuz sa\u011flar:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Yerle\u015fik ggplot2 temalar\u0131n\u0131 kullanarak grafiklerin g\u00f6r\u00fcn\u00fcm\u00fc nas\u0131l de\u011fi\u015ftirilir?<\/span><\/li>\n<li> <span style=\"color: #000000;\"><em>ggthemes<\/em> kitapl\u0131\u011f\u0131ndan \u00f6nceden tan\u0131mlanm\u0131\u015f temalar kullan\u0131larak grafiklerin g\u00f6r\u00fcn\u00fcm\u00fc nas\u0131l de\u011fi\u015ftirilir?<\/span><\/li>\n<li> <span style=\"color: #000000;\">Yol paneli arka plan\u0131 ve k\u0131lavuz \u00e7izgileri de dahil olmak \u00fczere teman\u0131n belirli bile\u015fenleri nas\u0131l d\u00fczenlenir?<\/span><\/li>\n<\/ul>\n<h2> <span style=\"color: #000000;\"><strong>Yerle\u015fik ggplot2 temalar\u0131n\u0131 kullanarak arsa g\u00f6r\u00fcn\u00fcm\u00fcn\u00fc de\u011fi\u015ftirme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rneklerin her biri i\u00e7in g\u00f6m\u00fcl\u00fc R veri k\u00fcmesindeki irisi kullanaca\u011f\u0131z:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#view first six rows of <em>iris<\/em> dataset<\/span>\nhead(iris)\n\n  Sepal.Length Sepal.Width Petal.Length Petal.Width Species\n1 5.1 3.5 1.4 0.2 setosa\n2 4.9 3.0 1.4 0.2 setosa\n3 4.7 3.2 1.3 0.2 setosa\n4 4.6 3.1 1.5 0.2 setosa\n5 5.0 3.6 1.4 0.2 setosa\n6 5.4 3.9 1.7 0.4 setosa<\/strong><\/pre>\n<p> \u00d6ncelikle ggplot2 k\u00fct\u00fcphanesini y\u00fckleyece\u011fiz ve <span style=\"color: #000000;\">t\u00fcrlere g\u00f6re renklendirilmi\u015f olarak<\/span> <span style=\"color: #000000;\"><em>x<\/em> ekseninde <em>Sepal.Length&#8217;i<\/em> ve y ekseninde <em>Sepal.Width&#8217;i<\/em> g\u00f6steren bir da\u011f\u0131l\u0131m grafi\u011fi olu\u015fturaca\u011f\u0131z<\/span> :<\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#load <em>ggplot2<\/em> library<\/span>\nlibrary(ggplot2)\n\n<span style=\"color: #008080;\">#create scatterplot\n<\/span>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point()<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Daha sonra, yerle\u015fik ggplot2 temalar\u0131n\u0131n her birinin olay \u00f6rg\u00fcs\u00fcn\u00fcn g\u00f6r\u00fcn\u00fcm\u00fcn\u00fc nas\u0131l etkiledi\u011fini g\u00f6sterece\u011fiz.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>gri_tema<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Gri arka plan\u0131 ve beyaz \u0131zgaras\u0131 olan varsay\u0131lan tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_gray()<\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>bw_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Beyaz \u00fczerine siyah bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_bw()<\/span><\/strong><\/pre>\n<h2> <strong><span style=\"color: #000000;\">theme_linedraw<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Beyaz bir arka plan \u00fczerinde yaln\u0131zca farkl\u0131 geni\u015fliklerde siyah \u00e7izgiler i\u00e7eren bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_linedraw()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_light<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><strong>theme_linedraw&#8217;a<\/strong> benzer ancak verilere daha fazla dikkat \u00e7ekmek i\u00e7in tasarlanm\u0131\u015f gri \u00e7izgiler ve eksenlere sahip bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_light()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>karanl\u0131k_tema<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><strong>theme_light&#8217;a<\/strong> benzer ancak arka plan\u0131 koyu olan bir tema. \u0130nce renkli \u00e7izgileri ortaya \u00e7\u0131karmak i\u00e7in kullan\u0131\u015fl\u0131 bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_dark()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>minimal_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Arka plan a\u00e7\u0131klamalar\u0131 olmayan bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_minimal()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>klasik_tema<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Izgaralar\u0131 olmayan bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_classic()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">theme_void<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Tamamen bo\u015f bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_void()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">ggthemes kitapl\u0131\u011f\u0131ndan \u00f6nceden tan\u0131mlanm\u0131\u015f temalar kullan\u0131larak grafiklerin g\u00f6r\u00fcn\u00fcm\u00fc nas\u0131l de\u011fi\u015ftirilir?<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Yerle\u015fik ggplot2 temalar\u0131n\u0131 kullanman\u0131n yan\u0131 s\u0131ra, grafiklerin esteti\u011fini de\u011fi\u015ftirmek i\u00e7in ggthemes k\u00fct\u00fcphanesindeki \u00f6nceden tan\u0131mlanm\u0131\u015f temalar\u0131 da kullanabiliriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0130lk \u00f6nce ggthemes k\u00fct\u00fcphanesini y\u00fckleyece\u011fiz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>library(ggthemes)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Daha sonra olay \u00f6rg\u00fcs\u00fcn\u00fcn esteti\u011fini de\u011fi\u015ftirmek i\u00e7in \u00f6nceden tan\u0131mlanm\u0131\u015f temalar\u0131 kullanman\u0131n baz\u0131 \u00f6rneklerini g\u00f6sterece\u011fiz:<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">theme_wsj<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Wall Street Journal&#8217;dan bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_wsj()<\/span><\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>theme_tufte<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\u0130statistik\u00e7i Edward Tufte&#8217;nin \u00e7al\u0131\u015fmalar\u0131ndan ilham alan minimalist bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_tufte()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>solarized_theme<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/en.wikipedia.org\/wiki\/Solarized_(color_scheme)\" target=\"_blank\" rel=\"noopener\">Solarized Palette&#8217;i<\/a> temel alan renkleri kullanan bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_solarized()<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Grafikte koyu bir arka plan kullanmak i\u00e7in <strong>light = FALSE<\/strong> arg\u00fcman\u0131n\u0131 da kullanabilece\u011fimizi unutmay\u0131n:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() +\n  theme_solarized( <span style=\"color: #800080;\">light = FALSE<\/span> )<\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_gdocs<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Google Dok\u00fcmanlar Tablosu varsay\u0131lanlar\u0131na sahip bir tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_gdocs()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_fivethyeight<\/strong><\/span><\/h2>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/fivethirtyeight.com\/\" target=\"_blank\" rel=\"noopener\">Fivethirtyeight.com&#8217;un<\/a> olay \u00f6rg\u00fcs\u00fcnden ilham alan tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_fivethirtyeight()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <span style=\"color: #000000;\"><strong>theme_economist<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">The Economist&#8217;ten ilham alan tema.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme_economist()<\/span><\/strong><\/pre>\n<h2><\/h2>\n<h2> <strong><span style=\"color: #000000;\">Grafiklerin belirli bile\u015fenleri nas\u0131l d\u00fczenlenir?<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">\u00c7izim panelinin arka plan rengini de\u011fi\u015ftirmek i\u00e7in <strong>theme()<\/strong> ve <strong>element_rect()<\/strong> i\u015flevlerini kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>theme(panel.background = element_rect(fill, color, size))<\/strong><\/pre>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>dolgu:<\/strong> dikd\u00f6rtgenin dolgu rengi<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>renk:<\/strong> kenarl\u0131k rengi<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>boyut:<\/strong> kenarl\u0131k boyutu<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Izgaran\u0131n boyutunu ve g\u00f6r\u00fcn\u00fcm\u00fcn\u00fc de\u011fi\u015ftirmek i\u00e7in <strong>element_line()<\/strong> i\u015flevini de kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>theme(panel.grid.major = element_line(color, size, linetype),\n      panel.grid.minor = element_line(color, size, linetype))<\/strong><\/pre>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>renk:<\/strong> kenarl\u0131k rengi<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>boyut:<\/strong> kenarl\u0131k boyutu<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>\u00e7izgi tipi:<\/strong> \u00e7izgi tipi (\u201cbo\u015f\u201d, \u201cd\u00fcz\u201d, \u201c\u00e7izgi\u201d, \u201cnoktal\u0131\u201d, \u201cnoktal\u0131 \u00e7izgi\u201d, \u201cuzun \u00e7izgi\u201d, \u201ciki \u00e7izgi\u201d)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, \u00e7izim paneli kenarl\u0131klar\u0131n\u0131n ve k\u0131lavuz \u00e7izgilerinin nas\u0131l kald\u0131r\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() <span style=\"color: #800080;\">+\n  theme(panel.border = element_blank(),\n  panel.grid.major = element_blank(),\n  panel.grid.minor = element_blank())<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, \u00e7izim paneli arka plan\u0131n\u0131n ve k\u0131lavuz \u00e7izgilerinin nas\u0131l de\u011fi\u015ftirilece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +\n  geom_point() +\n  theme(\n    panel.background = element_rect(fill = \"powderblue\",\n    color = \"powderblue\",\n    size = 0.5, linetype = \"solid\"),\n    panel.grid.major = element_line(size = 0.5, linetype = 'solid', color = \"white\"),\n    panel.grid.minor = element_line(size = 0.25, linetype = 'solid', color = \"white\")\n  )<\/strong><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Bu e\u011fitim, a\u015fa\u011f\u0131dakiler dahil en iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir k\u0131lavuz sa\u011flar: Yerle\u015fik ggplot2 temalar\u0131n\u0131 kullanarak grafiklerin g\u00f6r\u00fcn\u00fcm\u00fc nas\u0131l de\u011fi\u015ftirilir? ggthemes kitapl\u0131\u011f\u0131ndan \u00f6nceden tan\u0131mlanm\u0131\u015f temalar kullan\u0131larak grafiklerin g\u00f6r\u00fcn\u00fcm\u00fc nas\u0131l de\u011fi\u015ftirilir? Yol paneli arka plan\u0131 ve k\u0131lavuz \u00e7izgileri de dahil olmak \u00fczere teman\u0131n belirli bile\u015fenleri nas\u0131l d\u00fczenlenir? Yerle\u015fik ggplot2 temalar\u0131n\u0131 kullanarak arsa g\u00f6r\u00fcn\u00fcm\u00fcn\u00fc de\u011fi\u015ftirme A\u015fa\u011f\u0131daki [&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-506","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>En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.\" \/>\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\/en-iyi-ggplot2-temalari\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T16:40:17+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=\"5 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/\",\"url\":\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/\",\"name\":\"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-29T16:40:17+00:00\",\"dateModified\":\"2023-07-29T16:40:17+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber\"}]},{\"@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":"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials","description":"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.","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\/en-iyi-ggplot2-temalari\/","og_locale":"tr_TR","og_type":"article","og_title":"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials","og_description":"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.","og_url":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/","og_site_name":"Statorials","article_published_time":"2023-07-29T16:40:17+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"5 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/","url":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/","name":"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-29T16:40:17+00:00","dateModified":"2023-07-29T16:40:17+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"En iyi ggplot2 temalar\u0131n\u0131n nas\u0131l kullan\u0131laca\u011f\u0131na dair \u00f6rnekleri g\u00f6steren kapsaml\u0131 bir k\u0131lavuz.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/en-iyi-ggplot2-temalari\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"En iyi ggplot2 temalar\u0131 i\u00e7in eksiksiz bir rehber"}]},{"@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\/506","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=506"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/506\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}