├── .Rbuildignore ├── update.sh ├── ggplot2_themes_in_github.Rproj ├── .gitignore ├── LICENSE ├── README.Rmd └── ggplot2_themes_in_github.csv /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^.*\.Rproj$ 2 | ^\.Rproj\.user$ 3 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | Rscript build-readme.R 3 | -------------------------------------------------------------------------------- /ggplot2_themes_in_github.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | StripTrailingWhitespace: Yes 16 | 17 | BuildType: Package 18 | PackageUseDevtools: Yes 19 | PackageInstallArgs: --no-multiarch --with-keep.source 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Session Data files 6 | .RData 7 | 8 | # User-specific files 9 | .Ruserdata 10 | 11 | # Environment 12 | .Renviron 13 | 14 | # Example code in package build process 15 | *-Ex.R 16 | 17 | # Output files from R CMD build 18 | /*.tar.gz 19 | 20 | # Output files from R CMD check 21 | /*.Rcheck/ 22 | 23 | # RStudio files 24 | .Rproj.user/ 25 | 26 | # produced vignettes 27 | vignettes/*.html 28 | vignettes/*.pdf 29 | 30 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 31 | .httr-oauth 32 | 33 | # knitr and R markdown default cache directories 34 | *_cache/ 35 | /cache/ 36 | 37 | # Temporary files created by R markdown 38 | *.utf8.md 39 | *.knit.md 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Jesus M. Castagnetto 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: github_document 3 | --- 4 | 5 | ```{r echo=FALSE, include=FALSE} 6 | library(tidyverse) 7 | library(gh) 8 | library(lubridate) 9 | library(knitr) 10 | 11 | query = "ggplot+theme" 12 | get_repos <- function(query) { 13 | qstr <- glue::glue("GET /search/repositories?q={query}") 14 | accept_hdr <- "application/vnd.github.mercy-preview+json" 15 | res <- gh(qstr, .accept = accept_hdr) 16 | pages <- ceiling(res$total_count / 30) 17 | items <- c(res$items) 18 | for (i in 2:pages) { 19 | res <- gh(qstr, page = i, .accept = accept_hdr) 20 | Sys.sleep(10) # to avoid hitting the API limit 21 | items <- c(items, res$items) 22 | } 23 | return(items) 24 | } 25 | 26 | # get all repos that mention "ggplot2" and "theme" 27 | res1 <- get_repos("ggplot2+theme") 28 | Sys.sleep(30) # to avoid hitting the API limit 29 | res2 <- get_repos("ggplot2+style") 30 | Sys.sleep(30) # to avoid hitting the API limit 31 | # topic search 32 | # ggplot2-theme and ggplot2-themes 33 | res3 <- get_repos("topic:ggplot2-themes") 34 | Sys.sleep(30) # to avoid hitting the API limit 35 | res4 <- get_repos("topic:ggplot2-theme") 36 | 37 | res_items <- c(res1, res2, res3, res4) 38 | 39 | fix_null <- function(x) { 40 | ifelse(is_null(x), "", x) 41 | } 42 | 43 | github_ggplot2_themes <- tibble( 44 | name = character(), 45 | repo_url = character(), 46 | description = character(), 47 | homepage = character(), 48 | license = character(), 49 | created = character(), 50 | updated = character() 51 | ) 52 | 53 | # list of the repos to filter off 54 | repos_no_themes <- c( 55 | "jmcastagnetto/ggplot2_themes_in_github", 56 | "dannguyen/matplotlib-styling-tutorial", 57 | "davidhuh/plot_templates", 58 | "jkeirstead/r-slopegraph", 59 | "ArtPoon/ggfree", 60 | "foxnic/US-Mass-Shootings-Analysis", 61 | "guiastrennec/ggplus", 62 | "threecifanggen/ggplotly", 63 | "edawson/tidysig", 64 | "elabuel-o/xkcd-graphics", 65 | "pobch/ggplot2_practicing", 66 | "rensa/ggclump", 67 | "eclarke/ggbeeswarm", 68 | "GeekOnAcid/geom_rug2", 69 | "cemalley/data-viz", 70 | "onlyphantom/rgraphics", 71 | "sethbilliau/HODP-styleguide", 72 | "uplotnik/TidyVerseAssignment.md", 73 | "binmishr/Wrangling_and_Visualizing_Musical_Data_R" 74 | ) 75 | 76 | for (item in res_items) { 77 | # filter off repos w/o themes/styles 78 | if (item$full_name %in% repos_no_themes) { 79 | next 80 | } 81 | github_ggplot2_themes <- bind_rows( 82 | github_ggplot2_themes, 83 | tibble( 84 | name = item$name, 85 | repo_url = item$html_url, 86 | description = fix_null(item$description), 87 | homepage = fix_null(item$homepage), 88 | license = fix_null(item$license$name), 89 | created = item$created_at, 90 | updated = item$updated_at, 91 | ) 92 | ) 93 | } 94 | github_ggplot2_themes <- github_ggplot2_themes %>% 95 | distinct() %>% 96 | arrange(name, created) 97 | last_generated <- now(tzone = "UTC") 98 | # save csv 99 | write_csv( 100 | github_ggplot2_themes, 101 | path = "ggplot2_themes_in_github.csv" 102 | ) 103 | ``` 104 | 105 | # List of github repos with (possible) ggplot2 themes 106 | 107 | **Last generated on** `r last_generated` (UTC) 108 | 109 | - This list is generated using the github API, so it relies on the descriptions and tags in each repository 110 | - Get the [data in CSV format](ggplot2_themes_in_github.csv) 111 | - If you find a repo that doesn't contain a theme, submit an issue so I can add it to the filter 112 | 113 | ```{r echo=FALSE, results} 114 | kable(github_ggplot2_themes %>% 115 | rownames_to_column("item"), 116 | format = "markdown" 117 | ) 118 | ``` 119 | 120 | 121 | *License*: MIT 122 | -------------------------------------------------------------------------------- /ggplot2_themes_in_github.csv: -------------------------------------------------------------------------------- 1 | name,repo_url,description,homepage,license,created,updated 2 | ACHDSggTheme,https://github.com/will-ball/ACHDSggTheme,A package for easily adding a standardised ACHDS theme to ggplot2 plots in R,,GNU General Public License v3.0,2021-09-29T09:11:09Z,2022-02-04T10:08:32Z 3 | AQRCxray,https://github.com/jgiacomo/AQRCxray,Helpful functions and ggplot2 themes for working with XRF data at CNL.,,,2019-03-05T21:19:15Z,2022-11-09T18:28:43Z 4 | AlecWebsiteThmr,https://github.com/Alec-Stashevsky/AlecWebsiteThmr,Custom ggplot2 theme for my personal website,,Other,2021-08-22T20:19:40Z,2022-12-02T07:13:03Z 5 | Alice-s_Adventures_in_Wonderland_Project,https://github.com/CodonWalker/Alice-s_Adventures_in_Wonderland_Project,The Project contains a brief analysis of similar authors on the theme of Alice's Adventures in Wonderland,,MIT License,2023-10-16T12:55:59Z,2023-10-16T15:46:13Z 6 | BFHtheme,https://github.com/johanreventlow/BFHtheme,R package for Bispebjerg og Frederiksberg Hospital ggplot2 themes and branding,,Other,2025-10-13T22:07:02Z,2025-11-30T20:39:55Z 7 | BSOLTheme,https://github.com/Birmingham-and-Solihull-ICS/BSOLTheme,"A repository with Rmarkdown, Quarto and ggplot2 stylings",https://birmingham-and-solihull-ics.github.io/BSOLTheme/,Other,2023-11-28T08:51:08Z,2025-08-15T06:58:57Z 8 | BensThemes,https://github.com/benchaffe/BensThemes,A package for R that contains the custom themes I use for ggplot2,,MIT License,2021-02-13T16:59:18Z,2021-02-14T15:38:01Z 9 | BicycleTheme2023,https://github.com/jdwells-bicycletx/BicycleTheme2023,Bicycle Colors (2023) for ggplot2 Figures,,,2023-03-17T14:30:19Z,2023-03-17T14:30:45Z 10 | CGD-R-theme,https://github.com/zackgehan/CGD-R-theme,A ggplot2 theme for CGD graphs,,,2024-02-13T20:11:55Z,2024-02-13T20:28:57Z 11 | CGDRtheme,https://github.com/Center-for-Global-Development/CGDRtheme,A ggplot2 theme applying CGD colors and graphic styles,,Other,2024-06-12T21:21:34Z,2025-09-28T04:07:28Z 12 | CREG,https://github.com/nicoschoutteet/CREG,"Apply a custom, consistent theme to ggplot2 figures in line with CREG visual guide.",,,2022-11-21T10:11:14Z,2024-11-04T09:02:48Z 13 | CV-Insight-Charts,https://github.com/edward-sims/CV-Insight-Charts,I produced some info graphic-style charts for my CV - great for visualising your skills in a professional manner.,,MIT License,2018-05-25T07:52:32Z,2018-06-17T19:54:14Z 14 | Canadian-Pipeline-Throughput,https://github.com/hibazaidi/Canadian-Pipeline-Throughput,"The graphs analyze Canadian pipeline throughput and capacity trends using CER data. Visualizes Enbridge and TransMountain shipments by product and key points using ggplot2, dplyr, and custom themes. Includes secondary axis conversion to barrels/day.",,,2025-06-02T20:13:46Z,2025-06-02T21:27:44Z 15 | Career-Guidance-Tool,https://github.com/divyargarg/Career-Guidance-Tool,"tidytuesday selection, Investigating US tuition fee",,,2019-10-28T16:53:13Z,2020-01-16T20:40:32Z 16 | Climate_Data_Visualization,https://github.com/jarred13/Climate_Data_Visualization,Visualizing historical temperatures and greenhouse gases,,,2022-04-08T02:21:27Z,2024-11-05T11:40:23Z 17 | Coding-group-presentation,https://github.com/emmaSkarstein/Coding-group-presentation,"""Moving beyond theme_grey()"", a presentation about ggplot2 themes held for the Coding group meeting at NTNU on October 6th 2021.",https://emmaskarstein.github.io/Coding-group-presentation/,,2021-09-30T09:46:01Z,2024-07-08T14:03:24Z 18 | ColourblindR,https://github.com/UBC-MDS/ColourblindR,An R package that creates themes that make plots accessible for people with colour blindness.,https://ubc-mds.github.io/ColourblindR/,Other,2019-02-05T23:59:35Z,2024-10-21T21:03:46Z 19 | Custom-themes-in-ggplot2,https://github.com/binmishr/Custom-themes-in-ggplot2,,,,2021-12-12T08:07:19Z,2021-12-12T08:09:24Z 20 | Custom_graphs,https://github.com/xBlackBunnyx/Custom_graphs,This is a R package that add a custom theme and a palette set for ggplot2,,Creative Commons Zero v1.0 Universal,2025-03-06T15:53:35Z,2025-07-20T18:42:19Z 21 | DC-Style-Guide,https://github.com/mjwashick/DC-Style-Guide,ggplot2 style script for D.C. government,,Creative Commons Zero v1.0 Universal,2025-10-06T18:57:34Z,2025-10-06T18:58:36Z 22 | Data-Mining-Visualization-Project-to-Identify-Jakarta-Green-Area-and-Polution,https://github.com/Calistacen/Data-Mining-Visualization-Project-to-Identify-Jakarta-Green-Area-and-Polution,"Data storytelling project using R and ggplot2 to visualize polution index data in Jakarta. Analyzes the relationship between green open space (RTH) and air pollution (PM2.5) levels across administrative regions of Jakarta, presented through an infographic style data story.",,,2025-10-25T07:25:30Z,2025-10-25T07:30:11Z 23 | Data-Visualization-in-R,https://github.com/Joel-Kazadi/Data-Visualization-in-R,"This tutorial covers data visualization using R with the package ""ggplot2"". The following topics will be covered throughout the lesson: (i) the components of the ggplot2 graphics grammar, (ii) customizing graphics (annotation, themes and legends), (iii) creating interactive graphics and combined graphics, and so on.",,,2023-08-23T09:59:12Z,2023-08-23T15:02:14Z 24 | Data-Visulalization-Notes,https://github.com/BibekSapkota1/Data-Visulalization-Notes,"This repository features diverse visualization techniques using R, including basic plots, grid layouts, image preprocessing, Netflix analysis, PCA, themes, time trends, and univariate to multivariate analyses. Advanced tools like ggplot2, Qplot, faceting, and smoothing are also included for crafting impactful, insightful, and visually appealing.",,,2024-12-07T05:39:30Z,2025-01-14T05:40:25Z 25 | Data-Wrangling,https://github.com/som21-star/Data-Wrangling,"A case study on Wrangling and Visualizing Musical Data Find the most common chords and chord progressions in a sample of pop/rock music from the 1950s-1990s, and compare the styles of different artists. Worked with tibble data structure and applied the concept of tidyverse and ggplot2 package",,,2020-02-14T05:22:48Z,2020-02-14T05:23:53Z 26 | Data_visualization_R,https://github.com/minhosong88/Data_visualization_R,Data Visualization project with Economist Corroption-Human Development Index ,,,2025-01-27T15:57:03Z,2025-01-27T17:59:38Z 27 | Data_visualization_with_ggplot2,https://github.com/Sazzadul-Eanan/Data_visualization_with_ggplot2,ggplot2_Data_Viz_Basics,,,2022-10-29T08:45:17Z,2022-10-29T09:01:59Z 28 | DavisLabPlotThemes,https://github.com/AndersonButler/DavisLabPlotThemes,Custom ggplot2 themes for use on Davis lab projects,,,2022-02-02T17:58:54Z,2022-02-02T17:58:54Z 29 | Easy-ggplot2-Theme-customization-with-ggeasy-,https://github.com/binmishr/Easy-ggplot2-Theme-customization-with-ggeasy-,,,,2021-09-21T04:16:19Z,2021-09-21T04:18:18Z 30 | EasyBranding,https://github.com/ranchobiosciences/EasyBranding,R package for company colors and ggplot2 themes,,,2020-07-27T19:43:43Z,2024-06-13T22:42:34Z 31 | Exploring-ggplot2-boxplots-Defining-limits-and-adjusting-style,https://github.com/binmishr/Exploring-ggplot2-boxplots-Defining-limits-and-adjusting-style,,,,2021-12-15T07:52:51Z,2022-01-08T08:38:20Z 32 | ExploristicsTheme,https://github.com/Exploristics/ExploristicsTheme,A theme for ggplot2,,Other,2021-12-15T14:46:38Z,2024-09-23T13:34:52Z 33 | FMtheme,https://github.com/fmg-jluchman/FMtheme,A Fors Marsh `{ggplot2}` theme for R graphics,,,2024-09-09T17:18:56Z,2025-10-02T15:33:22Z 34 | Finger-Millet-Characterization,https://github.com/sujan4445/Finger-Millet-Characterization,"ggplot2, dplyr, patchwork to reads trait-wise frequency data from a dataset and produces custom-styled pie charts.",,,2025-09-11T13:22:25Z,2025-11-15T05:12:25Z 35 | Font-Character-Classification-from-Images,https://github.com/deeprpatel700/Font-Character-Classification-from-Images,"Image Classification analysis of Font data using KNN, RandomForest, and K-means. Dimension Reduction with PCA.",,,2021-01-19T16:23:11Z,2021-07-31T18:18:05Z 36 | GGPlot2_Theme-Guides-Labeller,https://github.com/wafiyulahdi-port/GGPlot2_Theme-Guides-Labeller,"This repository contains a comprehensive R script showcasing the usage of themes, guides, and labelling systems in the ggplot2 package. The code is designed as a practical reference for understanding how visual customization works within the ggplot2 ecosystem",,,2025-11-22T19:11:13Z,2025-11-22T19:12:33Z 37 | GLab_ggplot2_theme,https://github.com/giovannellilab/GLab_ggplot2_theme,The Giovannelli Lab ggplot2 tgheme,,,2022-12-10T02:27:25Z,2022-12-10T02:28:13Z 38 | GWalkR,https://github.com/Kanaries/GWalkR,Turn your data frame into a tableau style drag and drop UI interface to build visualization in R.,,Apache License 2.0,2023-07-10T03:23:42Z,2025-12-04T10:38:19Z 39 | GameOfThronesAnalytics,https://github.com/AshleyXWong/GameOfThronesAnalytics,"Our goal is to use descriptive analysis to ask and solve questions about the given datasets found on Kaggle. Knowing various aspects about a battle, including the house leader, the outcome, and the battle style, can we predict the outcome of a battle given only one or two facts? Kaggle data found here: https://www.kaggle.com/mylesoneill/game-of-thrones",,,2018-07-10T17:38:03Z,2018-07-25T00:22:15Z 40 | HODP-StyleGuide,https://github.com/HarvardOpenData/HODP-StyleGuide,ggplot2 Style Guide for HODP Graphics,,,2019-10-08T18:31:27Z,2019-11-10T05:58:47Z 41 | HighContrast,https://github.com/marcuslowx/HighContrast,An R package for making high contrast themes with ggplot2 for people with substantially impaired vision.,,,2023-09-17T08:31:47Z,2023-09-18T23:32:20Z 42 | Homicide-Reports,https://github.com/DeepakKumarGS/Homicide-Reports,This project is an exploratory data analysis of Homicide database released by FBI.,https://deepakkumargs.github.io/Homicide-Reports/,,2017-10-13T08:42:26Z,2025-09-11T21:51:04Z 43 | INBOtheme,https://github.com/RmeanyMAN/INBOtheme,A collection of ggplot2 themes,,,2014-11-21T21:41:02Z,2016-12-07T08:28:08Z 44 | INBOtheme,https://github.com/inbo/INBOtheme,An R package with several ggplot2 themes,https://inbo.github.io/INBOtheme,GNU General Public License v3.0,2016-08-29T06:48:00Z,2025-09-05T17:03:53Z 45 | Introducing-tvthemes-ggplot2-palettes-and-themes-from-your-favorite-TV-shows,https://github.com/binmishr/Introducing-tvthemes-ggplot2-palettes-and-themes-from-your-favorite-TV-shows,,,,2021-11-20T14:42:17Z,2022-01-29T08:49:31Z 46 | JFITheme,https://github.com/JainFamilyInstitute/JFITheme,"JFITheme is an R package that provides standardized ggplot2 themes, color scales, and typography for creating visualizations in line with the Jain Family Institute (JFI) style guide.",,Other,2024-09-18T04:31:13Z,2025-08-19T13:47:58Z 47 | KITra,https://github.com/MBrede/KITra,Custom color palettes and themes for ggplot2 plots in the CI of the AI Transfer Hub SH.,,GNU General Public License v3.0,2023-01-19T09:47:17Z,2023-01-19T09:48:47Z 48 | LUthemes,https://github.com/nrennie/LUthemes,"R package for styling ggplot2 graphics with Lancaster University colours. Unofficial theme, not endorsed by the university.",,Other,2023-05-11T19:27:30Z,2025-03-07T16:46:01Z 49 | LaTeX-Styling-ggplot2,https://github.com/tstenborg/LaTeX-Styling-ggplot2,Styling R ggplot2 graphics with LaTeX.,,,2023-12-26T04:54:26Z,2025-10-02T12:18:06Z 50 | LaTeX-Styling-ggplot2,https://github.com/dare-centre/LaTeX-Styling-ggplot2,Styling R ggplot2 graphics with LaTeX.,,,2023-12-26T05:13:18Z,2024-09-30T13:14:29Z 51 | Langage_R_Data_Visualisation_Machine_Learning,https://github.com/NisrineBennor/Langage_R_Data_Visualisation_Machine_Learning,,,,2020-10-06T00:59:17Z,2020-12-01T14:15:32Z 52 | MGTheme,https://github.com/MGato24/MGTheme,A collection of additional themes for ggplot2 tailored to my needs,,GNU General Public License v3.0,2022-09-08T16:42:31Z,2022-09-11T21:21:09Z 53 | MKHthemes,https://github.com/MatthewHeun/MKHthemes,Themes for ggplot2 graphics,https://matthewheun.github.io/MKHthemes/,Other,2018-07-08T00:39:14Z,2025-01-17T05:49:44Z 54 | MSUthemes,https://github.com/emilioxavier/MSUthemes,MSU and Big Ten color palettes and themes for R ggplot2,https://emilioxavier.github.io/MSUthemes/,Creative Commons Attribution Share Alike 4.0 International,2025-10-03T15:28:46Z,2025-12-03T18:18:25Z 55 | MoreThemes,https://github.com/thomassie/MoreThemes,A package that allows to access various themes to used with ggplot2.,,Other,2025-06-07T13:35:42Z,2025-06-14T14:39:11Z 56 | NCLRtemplates,https://github.com/ncl-icb-analytics/NCLRtemplates,R package with ggplot2 stuff with ICB / ICS colours and theme and templates for markdown reports,https://ncl-icb-analytics.github.io/NCLRtemplates/,Other,2023-06-07T10:03:09Z,2024-07-29T13:26:04Z 57 | NU_theme,https://github.com/MJPeyton/NU_theme,A custom theme for my ggplot2,,GNU General Public License v3.0,2019-01-04T16:08:40Z,2019-01-08T22:30:15Z 58 | Omics-and-Imaging-Pipelines,https://github.com/jujuakd888/Omics-and-Imaging-Pipelines,"Built a reproducible R Markdown pipeline (tidyverse, ggplot2, pheatmap, survival) to analyse TCGA-style breast cancer data: tumour-vs-normal testing (Wilcoxon + FDR), heatmaps, volcano plots, and Kaplan–Meier curves; delivered cleaned CSV outputs and figures to a shared GitHub repo.",,,2025-08-27T16:18:43Z,2025-08-27T16:23:24Z 59 | Panel_Charts,https://github.com/bquillin12/Panel_Charts,A slightly altered version of my ggplot2 theme for MS Word documents that adjusts settings for insertion into 2-column matrix panels.,,Apache License 2.0,2019-06-17T20:06:14Z,2019-07-03T18:12:53Z 60 | PiePieGGPlotter,https://github.com/Hedaozi/PiePieGGPlotter,(Developing) A desktop application of adjusting ggplot2 theme and tamp theme.,,,2021-07-30T14:09:25Z,2024-01-12T19:19:03Z 61 | Publication,https://github.com/bquillin12/Publication,ggplot2 theme that I use for inserting ggplot2 objects into MS Word documents.,,GNU General Public License v3.0,2019-06-17T19:58:53Z,2019-09-05T19:57:26Z 62 | QSPthemes,https://github.com/dougtommet/QSPthemes,Quantitative Sciences Program ggplot2 themes,,Other,2020-02-05T18:35:34Z,2020-02-05T20:49:08Z 63 | R-Bootcamp,https://github.com/atse0612/R-Bootcamp,,,,2016-11-16T16:48:45Z,2017-03-08T16:09:56Z 64 | R-Themes-GGplot2,https://github.com/jlrdandrea/R-Themes-GGplot2,Fast visual GGplot themes reference .,,,2022-10-28T18:08:20Z,2024-04-28T18:21:22Z 65 | R-for-Data-Science,https://github.com/Bhrugu-scientist/R-for-Data-Science,"Welcome to R for Data Science Repository. It includes the code in R required for dealing with matrices, data frames and creating beautiful visualizations.",,,2020-04-05T02:05:15Z,2021-07-23T09:11:21Z 66 | RAD-themes,https://github.com/colinannand/RAD-themes,ggplot2 theme - custom functions for FEMA approved palettes ,,Creative Commons Zero v1.0 Universal,2025-09-17T12:17:24Z,2025-11-06T18:59:43Z 67 | RShiny-Netflix-Content-Explorer,https://github.com/renswickd/RShiny-Netflix-Content-Explorer,"Interactive R Shiny application for exploring the Netflix content library (inspired by Netflix theme), generating personalized recommendations, and analyzing user viewing activity through engaging visualizations.",,Other,2024-06-26T11:43:01Z,2025-09-11T01:46:21Z 68 | R_theme,https://github.com/guoxueyu/R_theme,Summary of common themes in ggplot2,,,2020-11-06T12:00:30Z,2020-11-06T13:15:33Z 69 | R_utilities,https://github.com/cortes-ciriano-lab/R_utilities,R common ggplot2 theme and popular colour palettes for lab usage,,MIT License,2023-05-15T10:21:40Z,2023-05-15T10:25:54Z 70 | RestPoLLggtheme,https://github.com/RestPoll/RestPoLLggtheme,A ggplot2 theme for RestPoLL figures,,GNU General Public License v3.0,2024-07-24T10:01:52Z,2025-03-26T10:34:58Z 71 | Rokemon,https://github.com/schochastics/Rokemon,Pokemon themed R package ,,Other,2017-11-28T11:08:13Z,2025-11-06T13:46:24Z 72 | Rtistic,https://github.com/emilyriederer/Rtistic,"A hackathon-in-a-box / ""cookbook"" to help build an R package with custom RMarkdown themes and ggplot2 themes & palettes. This looks like a package but it is not intended to be installed as-is. It is a wireframe to be used by an individual or group to create their *own* package!",,Creative Commons Zero v1.0 Universal,2019-05-20T11:36:46Z,2025-10-06T09:27:48Z 73 | Scatterplot_algorithm,https://github.com/DanielANystrom/Scatterplot_algorithm,"The goal of this ongoing project is to develop a standardized scatterplot aesthetic in ggplot2, that relies on just a handful of variables that a user can easily edit, and declare, to quickly make scatterplots for several variable pairs using the same theme.",,,2020-07-31T02:37:10Z,2020-07-31T02:45:22Z 74 | SciencesPo,https://github.com/dmarcelinobr/SciencesPo,A tool set for analyzing political science data,http://CRAN.R-project.org/package=SciencesPo,,2015-01-05T17:33:39Z,2025-06-25T02:28:53Z 75 | SethsTheme,https://github.com/sethbilliau/SethsTheme,R package with Seth's custom ggplot2 theme,,,2021-06-17T03:51:55Z,2021-06-17T15:44:38Z 76 | StrategyUnitTheme,https://github.com/The-Strategy-Unit/StrategyUnitTheme,This package provides ggplot2 themes and colour palettes for use by The Strategy Unit.,https://the-strategy-unit.github.io/StrategyUnitTheme/,MIT License,2019-11-18T12:41:48Z,2025-10-14T15:40:22Z 77 | TCR_circos,https://github.com/aislyn/TCR_circos,R function to generate a circos-style ggplot from single-cell TCR data.,,MIT License,2022-01-25T00:04:38Z,2023-06-09T10:32:38Z 78 | TetrisChart,https://github.com/filmicaesthetic/TetrisChart,Function to create a Tetris-themed chart with ggplot2,,,2022-01-07T17:03:44Z,2022-12-30T07:10:16Z 79 | Theme,https://github.com/purplestat/Theme,Default ggplot2 theme,,,2025-11-19T08:41:52Z,2025-11-21T17:04:21Z 80 | ThemePark,https://github.com/MatthewBJane/ThemePark,Fun ggplot themes for popular culture ,http://matthewbjane.com/ThemePark/,MIT License,2023-07-22T14:20:30Z,2025-11-19T08:50:17Z 81 | Three-ggplot2-Themes-Optimized-for-the-Web,https://github.com/binmishr/Three-ggplot2-Themes-Optimized-for-the-Web,,,,2021-09-05T06:23:00Z,2021-09-05T06:24:11Z 82 | USArrests,https://github.com/grinaandmax/USArrests,"The presentation covers the fundamentals of Bayesian statistics, explores Bayes' theorem, visualizes the ""US Arrests"" dataset using ggplot2 and plotly, and demonstrates the application of Bayes' theorem to predict future murders in US states using the ""USArrests"" dataset. Additionally, the code includes styling elements for the presentation slides.",,,2023-11-12T16:21:40Z,2023-11-23T00:42:45Z 83 | Uber-Data-Analysis-in-R,https://github.com/JulWebana/Uber-Data-Analysis-in-R,"Dans un projet de data analyse, la data storytelling est un élément important du machine learning grâce auquel les entreprises peuvent comprendre le contexte de diverses opérations. Avec l'aide de la visualisation, les entreprises peuvent profiter de l'avantage de comprendre les données complexes et obtenir des informations qui les aideront à prendre des décisions. A travers ces lignes de codes vous apprendrez à mettre en œuvre le ggplot2 sur le jeu de données Uber Pickups et, à la fin, vous maîtriserez l'art de la visualisation des données en R. J’espère que ce projet vous plaira. ********************************************************************************** Les bibliothèques importantes que nous utiliserons sont : ggplot2: C'est l'épine dorsale de ce projet. ggplot2 est la bibliothèque de visualisation de données la plus populaire et la plus utilisée pour créer des graphiques de visualisation esthétiques. ggthemes: C'est un complément à notre bibliothèque principale ggplot2. Avec ceci, nous pouvons mieux créer des thèmes et des échelles supplémentaires avec le paquet ggplot2 principal. lubridate: Notre ensemble de données comprend plusieurs périodes de temps. Afin de comprendre nos données dans des catégories temporelles distinctes, nous utiliserons le package lubridate. dplyr : C'est une extension facilitant le traitement et la manipulation de données contenues dans une ou plusieurs tables. Elle propose une syntaxe claire et cohérente, sous formes de verbes, pour la plupart des opérations de ce type. Voici une simple analogie. Si les données constituent un tissu, nous pouvons voir dplyr comme à la fois la paire de ciseaux pour en faire la coupe, et l’aiguille et le fil pour le coudre. tidyr: Ce package nous aidera à mettre de l'ordre dans nos données. Le principe de base de tidyr est de mettre en ordre les colonnes où chaque variable est présente dans une colonne, chaque observation est représentée par une ligne et chaque valeur représente une cellule. DT: C'est une interface de la bibliothèque JavaScript DataTables. Il rend accessible les fonctionnalités de la librairie originale en R. La principale fonction de DT est datatable. Cette fonction permet de construire rapidement et efficacement un tableau interactif en format HTML à partir d’un data frame ou d’une matrice. Scales : Avec l'aide des échelles graphiques, nous pouvons automatiquement faire correspondre les données aux bonnes échelles avec des axes et des légendes bien placés.",,,2022-07-11T15:21:27Z,2025-08-14T11:55:52Z 84 | Using-themes-in-ggplot2,https://github.com/binmishr/Using-themes-in-ggplot2,,,,2021-12-16T05:51:12Z,2022-01-08T06:56:13Z 85 | Video-Games-Sales-EDA,https://github.com/DeepakKumarGS/Video-Games-Sales-EDA,"This project involves answering several questions like which genre has been dominating in the game industry,trends in gaming industry like platform,country,release year .This project provided an hands on indepth usage of data visualisation concepts and explored the various themes and highlights in R markdown.",https://deepakkumargs.github.io/Video-Games-Sales-EDA/,GNU General Public License v3.0,2017-10-05T11:09:24Z,2017-10-05T11:24:08Z 86 | aag-ggeefive,https://github.com/g5search/aag-ggeefive,ggplot2 theme for G5,,,2019-06-12T22:02:20Z,2023-01-28T00:01:26Z 87 | abmi.themes,https://github.com/mabecker89/abmi.themes,Making ABMI-themed ggplot2 graphics,,,2020-05-03T19:18:10Z,2024-12-12T15:03:19Z 88 | add2ggplot,https://github.com/JiaxiangBU/add2ggplot,The goal of add2ggplot is to add more theme for your ggplot object.,https://jiaxiangbu.github.io/add2ggplot/,Other,2019-03-21T04:13:13Z,2021-01-19T23:46:50Z 89 | agvic_ggplot2_theme,https://github.com/MRWhitehead/agvic_ggplot2_theme,A global plotting theme for Agriculture Victoria ,,,2022-07-28T01:25:32Z,2022-07-28T01:26:59Z 90 | aigtheme,https://github.com/andybridger/aigtheme,Create ggplot2 charts that adhere to the Ai Group Style Guide,,,2021-01-15T01:00:37Z,2021-02-26T00:58:34Z 91 | alaplot,https://github.com/matildastevenson/alaplot,ggplot2 theme for Atlas of Living Australia charts,,,2021-01-06T07:02:00Z,2021-04-09T08:25:27Z 92 | anteo,https://github.com/TysonStanley/anteo,Tools for researchers using random forests to explore their data (also includes nice ggplot2 themes),,,2016-09-19T21:22:13Z,2016-11-04T23:43:44Z 93 | architekter,https://github.com/ThinkR-open/architekter,A tool to extract a {ggplot2} theme from a Figma file,,Other,2022-02-25T09:39:24Z,2023-09-30T06:27:29Z 94 | artyfarty,https://github.com/datarootsio/artyfarty,ggplot2 theme + palette presets,,Other,2016-10-04T15:14:13Z,2025-09-25T23:02:18Z 95 | autheme,https://github.com/giuliogiagnoni/autheme,Get pretty and consistent graphs (ggplot2) and tables (flextable) with a style that suit Aarhus University theme.,,MIT License,2021-11-16T19:44:25Z,2021-12-09T10:02:44Z 96 | awesome-ggplot2,https://github.com/erikgahner/awesome-ggplot2,"A curated list of awesome ggplot2 tutorials, packages etc.",,,2020-01-31T15:36:58Z,2025-12-05T00:18:18Z 97 | bbplot,https://github.com/bbc/bbplot,R package that helps create and export ggplot2 charts in the style used by the BBC News data team,,,2019-01-15T17:28:21Z,2025-11-29T03:52:32Z 98 | bcggtheme,https://github.com/Tony-Chen-Melbourne/bcggtheme,A ggplot2 theme to create graphs in the style of BCG,,,2020-08-31T10:15:43Z,2020-10-19T01:48:27Z 99 | bestcolorgraphs,https://github.com/CocoPal/bestcolorgraphs,Best color themes for ggplot2,,Other,2020-12-04T20:51:45Z,2020-12-04T21:12:22Z 100 | bio-visual,https://github.com/akatrib/bio-visual,Collection of bio-themed data visuals,,,2020-10-19T12:26:18Z,2021-10-06T03:51:12Z 101 | biogeochemthemes,https://github.com/biogeochem/biogeochemthemes,This package holds the 'ggplot2' themes from members of the biogeochem lab.,,Other,2018-02-02T02:31:27Z,2020-04-22T13:49:54Z 102 | boeCharts,https://github.com/bank-of-england/boeCharts,Bank of England Chart Themes and Styles for 'ggplot2',,GNU General Public License v3.0,2020-05-26T19:44:40Z,2025-05-27T23:47:38Z 103 | brutalviz,https://github.com/lrodeck/brutalviz,"brutalviz is a collection of bold and beautiful ggplot2 themes that elevate your data storytelling with distinct visual aesthetics and Google Fonts. From sharp neo-brutalist grids to soft pastels and sleek dark modes, each theme is crafted for clarity, character, and consistency in modern data visualization. ",,,2025-05-07T09:34:53Z,2025-05-07T09:41:06Z 104 | camptheme,https://github.com/campbead/camptheme,theme for ggplot2,,Other,2021-09-09T17:57:43Z,2021-11-17T00:59:35Z 105 | catplot,https://github.com/catplot/catplot,Capable And Tity Plot Tools,https://catplot.catplot.org,Other,2023-11-14T05:09:35Z,2025-11-06T20:11:17Z 106 | cccmthemes,https://github.com/unhcr-dataviz/cccmthemes,CCCM branded theme for ggplot2,,Other,2023-09-26T11:28:05Z,2024-05-06T17:24:42Z 107 | certeplot2,https://github.com/certe-medical-epidemiology/certeplot2,"R Package for fast and convenient plotting, by providing wrappers around 'tidyverse' packages such as 'ggplot2', while also providing plotting in the Certe organisational style",https://certe-medical-epidemiology.github.io/certeplot2,GNU General Public License v2.0,2021-10-30T13:02:51Z,2025-11-25T14:39:33Z 108 | cfs.viz,https://github.com/fishsciences/cfs.viz,ggplot2 themes and visualization functions for CFS,,,2019-03-18T19:03:22Z,2019-03-18T20:00:38Z 109 | charite,https://github.com/johannesjuliusm/charite,"A minimal R package which provides a ggplot2 theme and color definitions following the Charité corporate identity style guide. When using the package, please acknowledge the author.",https://marke.charite.de/d/Y3FxSwD6Tz3a,Other,2025-04-19T00:53:12Z,2025-09-23T08:58:55Z 110 | clcharts,https://github.com/houseofcommonslibrary/clcharts,"Themes, colors and tools for making charts with ggplot2 in the House of Commons Library style",,"BSD 3-Clause ""New"" or ""Revised"" License",2020-03-20T15:24:36Z,2025-08-30T09:16:17Z 111 | clean-ggplot-theme,https://github.com/aaronschiff/clean-ggplot-theme,My custom theme for ggplot2 charts ,,,2015-08-30T07:58:05Z,2017-07-18T22:29:23Z 112 | clplot,https://github.com/olihawkins/clplot,A ggplot2 theme for the House of Commons Library.,,"BSD 3-Clause ""New"" or ""Revised"" License",2019-03-27T13:44:11Z,2020-03-19T16:20:51Z 113 | cmapplot,https://github.com/CMAP-REPOS/cmapplot,Set of templates and themes to apply CMAP graphics standards to R products.,https://cmap-repos.github.io/cmapplot/,Other,2019-12-10T15:25:18Z,2025-11-26T22:13:41Z 114 | coffeegeeks,https://github.com/RMHogervorst/coffeegeeks,#rstatsforcoffeegeeks,,MIT License,2017-08-13T16:01:48Z,2017-09-16T15:00:37Z 115 | comotheme,https://github.com/como-ph/comotheme,CoMo Consortium Themes for R,,Other,2020-05-25T19:45:59Z,2020-06-19T13:32:04Z 116 | cowplot,https://github.com/wilkelab/cowplot,cowplot: Streamlined Plot Theme and Plot Annotations for ggplot2,https://wilkelab.org/cowplot/,,2014-10-05T16:34:22Z,2025-12-03T13:10:46Z 117 | cowplot,https://github.com/cran/cowplot,:exclamation: This is a read-only mirror of the CRAN R package repository. cowplot — Streamlined Plot Theme and Plot Annotations for 'ggplot2'. Homepage: https://wilkelab.org/cowplot/ Report bugs for this package: https://github.com/wilkelab/cowplot/issues,,,2015-06-03T18:43:46Z,2025-07-07T19:31:23Z 118 | cplthemes,https://github.com/californiapolicylab/cplthemes,California Policy Lab's ggplot2 theme,,,2021-07-09T20:56:54Z,2021-08-12T16:10:36Z 119 | crthemes,https://github.com/christyray/crthemes,A Standardized ggplot2 Theme for Visualizations,,Other,2021-12-11T04:28:44Z,2023-01-24T23:50:17Z 120 | csafethemes,https://github.com/CSAFE-ISU/csafethemes,"An R package containing themes, color schemes, and other stylistic elements for creating CSAFE-themed ggplot2 plots. (With apologies to Ricardo Bion and the ggtech package.)",,,2018-06-14T21:57:29Z,2025-08-26T14:54:33Z 121 | cubethemes,https://github.com/zerogetsamgow/cubethemes,Themes for cubies to create great data visualisations in ggplot2.,,Creative Commons Attribution 4.0 International,2024-02-13T05:54:31Z,2024-10-01T10:55:05Z 122 | customThemes,https://github.com/michaellevy/customThemes,My themes for ggplot2,,Other,2016-12-13T19:36:57Z,2016-12-13T19:38:22Z 123 | cyberpunk,https://github.com/R-CoderDotCom/cyberpunk,A function to create cyberpunk-style graphs with R based on ggplot2,,MIT License,2020-12-03T13:51:59Z,2025-08-23T11:06:15Z 124 | cyberpunk,https://github.com/SodiumMan91/cyberpunk,Cyberpunk / Neon theme for ggplot2 graphs,,,2024-10-02T23:42:31Z,2024-11-20T00:21:01Z 125 | dRacula,https://github.com/dracula/dRacula,🧛🏻‍♂️ Dark theme for R,https://draculatheme.com/R,Other,2021-11-28T00:24:17Z,2025-10-06T09:37:37Z 126 | dark,https://github.com/marlowe2332/dark,Dark mode for ggplot2 themes,,Other,2025-09-16T10:09:54Z,2025-09-19T02:59:33Z 127 | dash_theme,https://github.com/DashWieland/dash_theme,My personal theme for ggplot2,,,2019-04-03T17:02:02Z,2019-05-02T12:08:20Z 128 | datademon,https://github.com/medewitt/datademon,,,Other,2017-10-04T13:04:32Z,2019-01-16T19:42:01Z 129 | dataviz_ggplot2_themes,https://github.com/UNSW-codeRs/dataviz_ggplot2_themes,Repository to store workshop materials for dataviz workshop,,MIT License,2022-09-09T04:58:43Z,2022-09-09T04:58:43Z 130 | ddplot,https://github.com/DD-Story-Hub/ddplot,Making ggplot2 graphics in DD Story Hub style✨,,Other,2020-10-04T15:25:37Z,2021-03-09T15:29:21Z 131 | ddthemes,https://github.com/markjrieke/ddthemes,Color Palette & Theme Extension for ggplot2,,MIT License,2021-09-21T20:04:59Z,2021-09-22T13:23:08Z 132 | delgosha,https://github.com/mcnakhaee/delgosha,Delgosha is an R package that provides a collection of ggplot2 themes for RTL languages (mostly Persian),,Other,2020-08-11T10:46:13Z,2024-04-19T15:32:55Z 133 | diarieducaciotheme,https://github.com/vicoliveres/diarieducaciotheme,Visual theme for R ggplot2 charts in Diari Educació style.,,,2018-08-23T09:20:10Z,2018-08-23T13:53:31Z 134 | djprtheme,https://github.com/djsir-data/djprtheme,"ggplot2 theme package for the Victorian Department of Jobs, Precincts and Regions",,Other,2021-03-26T02:18:57Z,2024-05-07T08:47:05Z 135 | dof-theme,https://github.com/econosopher/dof-theme,"A style guide and theme for ""Deconstructor of Fun"" in ggplot2. ",,,2025-07-19T17:50:21Z,2025-08-27T08:48:34Z 136 | dqnTheme,https://github.com/d-qn/dqnTheme,theme for ggplot2,,,2018-07-30T12:55:33Z,2025-11-05T20:22:16Z 137 | drat,https://github.com/inbo/drat,A repository with R packages created and maintained by INBO,http://inbo.github.io/drat,MIT License,2017-07-13T07:54:30Z,2020-01-30T13:25:52Z 138 | eafithemer,https://github.com/camilogarciabotero/eafithemer,This repo hosts the development of a simple ggplot2 theme based on the EAFIT university aesthetics.,https://camilogarciabotero.github.io/eafithemer/,GNU Affero General Public License v3.0,2021-02-04T15:44:52Z,2021-08-26T22:15:43Z 139 | east-R-art,https://github.com/AdamSpannbauer/east-R-art,A class art with R demo with an egg theme 🥚🐰,https://adamspannbauer.github.io/east-R-art/,MIT License,2024-03-27T11:11:04Z,2024-03-27T11:15:54Z 140 | ebviz,https://github.com/j-effendy/ebviz,Additional ggplot2 themes and colour palettes for creating accessible and cohesive plots for edited research book.,,,2021-10-04T09:33:28Z,2022-02-23T22:01:59Z 141 | echart-ggplot-style,https://github.com/hvanphucs/echart-ggplot-style,"High-quality, publication-ready charts using Apache ECharts, inspired by the aesthetics of ggplot2",,Apache License 2.0,2025-07-31T04:33:22Z,2025-07-31T04:35:55Z 142 | eclthemes,https://github.com/eclarke/eclthemes,Useful theme(s) for ggplot2,,,2015-10-01T15:06:36Z,2015-10-01T15:07:26Z 143 | economist-visualization,https://github.com/saiganeshgandi/economist-visualization,"Data visualization in R using the Economist dataset to explore the relationship between CPI and HDI. Includes scatterplots, regression analysis, and annotated country labels with professional ggplot2 styling.",,,2025-09-19T14:46:49Z,2025-09-19T14:58:53Z 144 | ectrlplot,https://github.com/euctrl-pru/ectrlplot,R 📦 to create ggplot2 graphics styled by the PRU team,https://ectrlplot.ansperformance.eu/,,2019-02-18T13:22:38Z,2024-10-24T06:39:20Z 145 | egg,https://github.com/cran/egg,":exclamation: This is a read-only mirror of the CRAN R package repository. egg — Extensions for 'ggplot2': Custom Geom, Custom Themes, Plot Alignment, Labelled Panels, Symmetric Scales, and Fixed Panel Size ",,,2017-09-12T17:21:02Z,2020-07-03T20:44:55Z 146 | elementalist,https://github.com/teunbrand/elementalist,This repository provides extra theme elements as an extension of ggplot2.,https://teunbrand.github.io/elementalist/,Other,2020-06-29T16:12:02Z,2025-07-29T01:50:38Z 147 | emwthemes,https://github.com/emmarshall/emwthemes,Personal ggplot2 themes,https://emmarshall.github.io/emwthemes/,Creative Commons Zero v1.0 Universal,2024-01-11T03:54:04Z,2024-10-26T17:23:17Z 148 | envreportutils,https://github.com/bcgov/envreportutils,An R package with ggplot2 themes & other functions related to Environmental Reporting BC work flows,,Apache License 2.0,2015-04-24T22:29:40Z,2025-08-22T21:40:12Z 149 | epinionDSB,https://github.com/jvieroe/epinionDSB,a DSB-styled ggplot2 visual identity for Epinion staff,,GNU General Public License v3.0,2021-09-24T08:52:42Z,2021-11-11T18:08:36Z 150 | esctheme,https://github.com/ESC-Economics/esctheme,Create ggplot2 charts in the Essential Services Commission style,https://esc-economics.github.io/esctheme/,Other,2024-03-13T05:31:35Z,2025-11-29T23:27:52Z 151 | euissR,https://github.com/cdtrich/euissR,"Custom ggplot2 theme, geoms and color palettes to reflect the visual identity of the EU Institute for Security Studies.",,Other,2022-03-24T16:08:11Z,2025-11-19T08:52:45Z 152 | ewenthemes,https://github.com/ewenme/ewenthemes,ggplot2 chart aesthetics and helpers,,Other,2019-05-27T20:03:15Z,2025-01-31T06:51:10Z 153 | fazhthemes,https://github.com/fazepher/fazhthemes,My personal {ggplot2} themes,https://fazepher.github.io/fazhthemes/,Other,2020-08-17T02:11:09Z,2020-08-17T17:17:04Z 154 | fedplot,https://github.com/sergiocorreia/fedplot,R package to create ggplot2 charts in the style used by the Fed's FSR,https://sergiocorreia.github.io/fedplot,Other,2023-05-17T05:13:32Z,2025-04-14T00:33:22Z 155 | fheatmap,https://github.com/sentisci/fheatmap,"R function to plot high quality, elegant heatmap using 'ggplot2' graphics . Some of the important features of this package are, coloring of row/column side tree with respect to the number of user defined cuts in the cluster, add annotations to both columns and rows, option to input annotation palette for tree and column annotations and multiple parameters to modify aesthetics (style, color, font) of texts in the plot. ",,,2015-05-06T15:40:08Z,2022-02-02T10:36:35Z 156 | fiegeVizr,https://github.com/quickcoffee/fiegeVizr,internal library for FIEGE ggplot2 theme,,,2020-07-29T13:04:45Z,2020-07-31T12:41:43Z 157 | fiero,https://github.com/jvieroe/fiero,customized ggplot2 themes,,,2021-10-30T14:10:53Z,2021-10-30T14:13:59Z 158 | firatheme,https://github.com/vankesteren/firatheme,a ggplot2 theme with fira font,,Other,2018-03-14T22:45:05Z,2025-12-05T16:08:36Z 159 | fmeireles,https://github.com/meirelesff/fmeireles,My personal R package,,,2016-09-28T21:45:25Z,2017-02-17T12:04:06Z 160 | fontHind,https://github.com/bhaskarvk/fontHind,ggplot2 themes based on the Hind fonts,https://bhaskarvk.github.io/fontHind/,Other,2017-02-23T17:23:40Z,2023-01-28T06:13:57Z 161 | fontHind,https://github.com/cran/fontHind,:exclamation: This is a read-only mirror of the CRAN R package repository. fontHind — Additional 'ggplot2' Themes Using 'Hind' Fonts. Homepage: https://github.com/bhaskarvk/fontHind Report bugs for this package: https://github.com/bhaskarvk/fontHind/issues,,Other,2017-02-27T07:18:18Z,2020-07-09T01:02:22Z 162 | fontMPlus,https://github.com/bhaskarvk/fontMPlus,ggplot2 themes based on M+ fonts,https://bhaskarvk.github.io/fontMPlus/,Other,2017-02-26T16:06:10Z,2025-03-22T11:18:16Z 163 | fontMPlus,https://github.com/cran/fontMPlus,:exclamation: This is a read-only mirror of the CRAN R package repository. fontMPlus — Additional 'ggplot2' Themes Using 'M+' Fonts. Homepage: https://github.com/bhaskarvk/fontMPlus Report bugs for this package: https://github.com/bhaskarvk/fontMPlus/issues,,Other,2017-02-27T07:18:21Z,2017-02-27T07:18:25Z 164 | fwthemes,https://github.com/FlowWest/fwthemes,ggplot2 themes for FlowWest,,,2020-03-25T17:26:03Z,2020-03-25T17:31:26Z 165 | gem-r-cookbook,https://github.com/GlobalEnergyMonitor/gem-r-cookbook,Reference manual for creating GEM-style graphics using the gemplot package built on top of R's ggplot2 library,https://globalenergymonitor.github.io/gem-r-cookbook/,,2024-07-08T07:59:23Z,2024-07-08T09:11:38Z 166 | ggCHE,https://github.com/IndianaCHE/ggCHE,Indiana CHE Theme for ggplot2,,Other,2017-12-20T16:48:19Z,2017-12-20T16:48:42Z 167 | ggCheysson,https://github.com/friendly/ggCheysson,Styles of Emile Cheysson for ggplot2,,GNU General Public License v3.0,2023-10-23T16:02:33Z,2023-10-29T09:39:20Z 168 | ggGalactic,https://github.com/galacticpolymath/ggGalactic,Themes and helper functions for ggplot2-based Galactic Polymath asset development,,,2020-04-24T17:10:45Z,2021-02-10T17:50:04Z 169 | ggNorthwestern,https://github.com/chang/ggNorthwestern,A ggplot2 theme with Northwestern colors.,,,2017-10-10T02:27:44Z,2017-10-10T08:15:11Z 170 | ggOBI,https://github.com/markusntz/ggOBI,ggplot2 theme for OBI - final project for the Data Vizualisation course,,,2018-04-26T07:21:06Z,2020-01-11T15:29:51Z 171 | ggRetro,https://github.com/albert-ying/ggRetro,A ggplot2 theme with floating axes,,MIT License,2021-10-21T01:03:18Z,2021-11-12T07:04:59Z 172 | ggSketch,https://github.com/Jiawang1209/ggSketch,ggSketch is an R package that transforms photos into sketch-style contour drawings using the grammar of ggplot2.,,Other,2025-11-22T14:57:58Z,2025-11-28T07:24:54Z 173 | ggStarRail,https://github.com/GuoXiang9399/ggStarRail,StarRail themed color palettes for ggplot2,,GNU General Public License v3.0,2024-04-01T07:19:21Z,2024-05-22T05:57:59Z 174 | ggThemeAssist,https://github.com/cran/ggThemeAssist,:exclamation: This is a read-only mirror of the CRAN R package repository. ggThemeAssist — Add-in to Customize 'ggplot2' Themes. Homepage: https://github.com/calligross/ggthemeassist ,,,2016-03-09T14:22:40Z,2016-08-13T14:54:41Z 175 | ggThemeScanpy,https://github.com/GreshamLab/ggThemeScanpy,ggplot2 themes that match scanpy default outputs,,MIT License,2021-03-31T16:00:40Z,2021-05-02T21:10:35Z 176 | ggautothemes,https://github.com/lukastay/ggautothemes,Takes in your ggplot2 graph and outputs a plot of multiple themes.,,Other,2023-08-09T07:29:18Z,2025-02-07T16:59:01Z 177 | ggbeeswarm2,https://github.com/csdaw/ggbeeswarm2,Column scatter / beeswarm-style plots in ggplot2,,,2020-07-18T17:01:57Z,2023-04-22T12:56:15Z 178 | ggbrick,https://github.com/cran/ggbrick,:exclamation: This is a read-only mirror of the CRAN R package repository. ggbrick — Waffle Style Chart with a Brick Layout in 'ggplot2' ,,Other,2024-03-15T02:31:58Z,2025-09-15T03:50:35Z 179 | ggcertara,https://github.com/certara/ggcertara,A ggplot2 theme for Certara CSC-iDD,,,2019-02-05T19:40:49Z,2025-06-09T22:05:31Z 180 | ggclump,https://github.com/jimjam-slam/ggclump,An attempt to get d3-style physics simulation going in ggplot2.,,,2018-05-18T07:13:38Z,2018-05-18T07:23:59Z 181 | ggcognigen,https://github.com/simulations-plus/ggcognigen,"Geoms, themes, styles, and helper functions for ggplot2 at the Clinical Pharmacology and Pharmacometrics business unit of Simulations Plus, Inc",https://simulations-plus.github.io/ggcognigen/,Other,2023-08-10T01:47:19Z,2024-07-09T19:35:37Z 182 | ggcolormeter,https://github.com/yjunechoe/ggcolormeter,A ggplot2 color/fill legend guide extension in the style of a dashboard meter,https://yjunechoe.github.io/ggcolormeter/,Other,2022-06-13T08:46:02Z,2024-10-21T20:50:08Z 183 | ggconf,https://github.com/caprice-j/ggconf,Concise appearance modification of ggplot2 ,,,2017-08-25T03:09:05Z,2020-02-12T10:07:30Z 184 | ggcorpthemer,https://github.com/mjfrigaard/ggcorpthemer,Creating a corporate theme for ggplot2,,,2022-02-07T17:49:49Z,2022-02-07T17:49:49Z 185 | ggcustom,https://github.com/jhuovari/ggcustom,Custom ggplot2 Themes and Scales,,,2024-11-13T14:56:01Z,2025-10-09T12:29:02Z 186 | ggdark,https://github.com/nsgrantham/ggdark,Dark mode for ggplot2 themes,,Other,2018-09-18T15:35:43Z,2025-11-01T09:28:49Z 187 | ggdark,https://github.com/cran/ggdark,:exclamation: This is a read-only mirror of the CRAN R package repository. ggdark — Dark Mode for 'ggplot2' Themes ,,Other,2019-01-11T17:32:46Z,2020-07-09T01:04:21Z 188 | ggdc,https://github.com/datacamp/ggdc,Datacamp Themes for ggplot2.,,MIT License,2017-12-28T22:58:41Z,2025-02-28T11:30:15Z 189 | ggdecor,https://github.com/dmarcelinobr/ggdecor,Improve your data visualisation with ggplot2 in 1 minute,,,2019-04-03T10:18:39Z,2024-10-24T16:58:56Z 190 | ggdistribute,https://github.com/iamamutt/ggdistribute,ggplot2 extension for plotting distributions,,GNU General Public License v3.0,2018-05-09T04:47:08Z,2021-02-10T04:46:10Z 191 | ggduncan,https://github.com/duncan-clark/ggduncan,Personal ggplot2 theme,,,2019-10-09T20:46:24Z,2020-05-02T21:20:00Z 192 | ggedit,https://github.com/yonicd/ggedit,Interactively edit ggplot layer aesthetics and theme definitions,https://yonicd.github.io/ggedit/,Other,2016-11-15T03:21:44Z,2025-09-19T05:54:36Z 193 | ggedit,https://github.com/cran/ggedit,:exclamation: This is a read-only mirror of the CRAN R package repository. ggedit — Interactive 'ggplot2' Layer and Theme Aesthetic Editor. Homepage: https://github.com/yonicd/ggedit Report bugs for this package: https://github.com/yonicd/ggedit/issues,,Other,2017-03-31T17:00:11Z,2024-03-05T02:31:16Z 194 | ggexpanse,https://github.com/hrbrmstr/ggexpanse,🚀Theme Elements Based On 'The Expanse',,Other,2019-08-19T12:24:04Z,2025-03-22T10:54:42Z 195 | ggfla,https://github.com/mvfki/ggfla,GGPlot2 Extension for Fixed-Length Axis,,Other,2024-12-09T19:37:18Z,2024-12-10T16:45:58Z 196 | ggflother,https://github.com/flother/ggflother,R package to create ggplot2 charts in the style used on flother.is,https://flother.is/categories/visualisations/,,2019-02-10T09:04:46Z,2022-02-06T14:11:25Z 197 | gggephi,https://github.com/schliebs/gggephi,ggplot2-style legends for gephi network graphs,,GNU General Public License v3.0,2022-01-01T13:28:15Z,2022-01-01T13:28:18Z 198 | gghdx,https://github.com/OCHA-DAP/gghdx,"HDX Theme, Scales, and Other Conveniences for 'ggplot2'",,GNU General Public License v3.0,2022-07-20T13:06:22Z,2025-07-05T11:32:36Z 199 | gghdx,https://github.com/cran/gghdx,":exclamation: This is a read-only mirror of the CRAN R package repository. gghdx — HDX Theme, Scales, and Other Conveniences for 'ggplot2'. Homepage: https://github.com/OCHA-DAP/gghdx Report bugs for this package: https://github.com/OCHA-DAP/gghdx/issues",,,2023-08-18T19:31:10Z,2024-10-10T19:11:21Z 200 | ggifau,https://github.com/adrianadermon/ggifau,IFAU theme for ggplot2,,GNU General Public License v3.0,2024-12-09T13:42:07Z,2025-03-06T15:33:47Z 201 | ggipp,https://github.com/benbel/ggipp," Package R pour ggplot2 qui permet de respecter la charte graphique de l'IPP, via scale_color_ipp, scale_fill_ipp et theme_ipp.",,,2020-06-15T17:52:01Z,2023-01-15T12:33:22Z 202 | ggiteam,https://github.com/city-of-baltimore/ggiteam,Office of Innovation's colors and themes for ggplot2 plots in R.,,,2018-03-18T01:12:20Z,2023-02-21T01:46:59Z 203 | ggjournals,https://github.com/huichen99/ggjournals,Customized ggplot2 themes for journal styles,,GNU General Public License v3.0,2025-01-02T14:41:01Z,2025-01-02T15:25:56Z 204 | ggkanlev,https://github.com/levikanwischer/ggkanlev,Personal themes for ggplot2,,,2020-12-30T00:43:17Z,2021-07-14T21:07:34Z 205 | gglaplot,https://github.com/Greater-London-Authority/gglaplot,Makes graphics in the GLA style using ggplot2,https://greater-london-authority.github.io/gglaplot/,,2019-01-14T12:28:38Z,2025-11-04T11:51:58Z 206 | gglgbtq,https://github.com/turtletopia/gglgbtq,Provides multiple palettes based on pride flags with tailored themes.,https://turtletopia.github.io/gglgbtq/,GNU General Public License v3.0,2022-08-06T11:02:28Z,2025-11-30T11:26:32Z 207 | ggmedsl,https://github.com/MEDSL/ggmedsl,R package for creating ggplot2 graphics using MEDSL style and colors,,Other,2019-02-26T18:18:39Z,2019-02-28T19:00:52Z 208 | ggmin,https://github.com/sjessa/ggmin,"Clean, minimalist theme for ggplot2 (+ a variant designed for Powerpoint)",,,2017-06-29T20:57:41Z,2024-05-11T13:03:12Z 209 | ggminthemes,https://github.com/ramorel/ggminthemes,A collection of {ggplot2} themes made for me by me--focused on clarity and minimalism,,,2020-04-29T15:39:27Z,2020-05-01T16:42:09Z 210 | ggmjs,https://github.com/datahub/ggmjs,A ggplot2 theme for the Milwaukee Journal Sentinel,,,2017-09-15T20:18:53Z,2022-07-17T01:35:12Z 211 | ggnba,https://github.com/ariespirgel/ggnba,"ggplot2 nba themes, scales, and geoms",,,2017-04-28T18:22:11Z,2017-04-28T18:24:18Z 212 | ggnuplot,https://github.com/hriebl/ggnuplot,Make your ggplots look like gnuplots,,Other,2020-02-08T00:01:24Z,2025-08-11T08:49:01Z 213 | ggoecd,https://github.com/jclopeztavera/ggoecd,ggplot2 extension with OECD-esque geoms and themes,,MIT License,2017-12-01T18:31:03Z,2024-08-22T10:54:22Z 214 | ggpkt,https://github.com/purplezippo/ggpkt,themes and graphs based on ggplot2,,,2018-11-15T02:03:28Z,2019-04-02T14:27:29Z 215 | ggplot,https://github.com/Cord-Thomas/ggplot,A ggplot2 theme and color palettes for making graphics in the style used by the RAND Digital Design team.,,,2021-09-02T16:41:54Z,2021-09-02T16:41:54Z 216 | ggplot-themes,https://github.com/taylorperkins/ggplot-themes,"Test out ggplot themes against different geoms, including your own!",https://taylorperkins.shinyapps.io/ggplot-themes/,,2019-01-12T21:31:20Z,2023-10-11T07:04:41Z 217 | ggplot2,https://github.com/lovecat18/ggplot2,Dark mode for ggplot2 themes,,Other,2025-09-16T06:09:55Z,2025-09-18T09:29:09Z 218 | ggplot2-Formatting-Introduction,https://github.com/JackGilligan/ggplot2-Formatting-Introduction,Formatting in ggplot2 using theme(),,,2018-11-06T18:01:50Z,2018-11-06T19:06:46Z 219 | ggplot2-ds-theme,https://github.com/dstoiko/ggplot2-ds-theme,"A minimalist theme for ggplot2 in R, using Consolas font",,,2016-04-19T16:33:31Z,2016-04-19T16:37:11Z 220 | ggplot2-reference,https://github.com/isabellabenabaye/ggplot2-reference,📊📄 ggplot2 theme elements reference sheet,https://isabella-b.com/blog/ggplot2-theme-elements-reference/,,2020-05-20T08:19:55Z,2025-08-05T13:31:25Z 221 | ggplot2-snippets,https://github.com/vedoa/ggplot2-snippets,A quarto style book with ggplot2 snippets,,MIT License,2025-08-24T07:05:22Z,2025-08-29T16:21:38Z 222 | ggplot2-style,https://github.com/csp-materials/ggplot2-style,,,,2025-07-01T19:17:57Z,2025-07-01T19:18:13Z 223 | ggplot2-theme,https://github.com/robertjwilson/ggplot2-theme,a ggplot2 designed to make it easier to create publication quality figures,,,2015-10-02T19:00:44Z,2025-07-09T15:04:12Z 224 | ggplot2-theme-intro,https://github.com/yjunechoe/ggplot2-theme-intro,Introduction to ggplot2 theme(),https://yjunechoe.github.io/ggplot2-theme-intro/,,2023-07-20T15:27:03Z,2024-03-26T23:01:07Z 225 | ggplot2-theme-rgm,https://github.com/robmoss/ggplot2-theme-rgm,A plotting theme for ggplot2,,"BSD 2-Clause ""Simplified"" License",2015-03-11T01:53:16Z,2019-03-29T03:07:05Z 226 | ggplot2-theme-selector,https://github.com/SGS2000/ggplot2-theme-selector,Selector de temas para ggplot2,,MIT License,2023-06-14T15:22:21Z,2025-09-07T16:48:21Z 227 | ggplot2-theme-tutorial,https://github.com/mclaire19/ggplot2-theme-tutorial,,,,2020-01-31T19:04:59Z,2020-01-31T19:17:26Z 228 | ggplot2-themes,https://github.com/smc-ribes/ggplot2-themes,custom ggplot2 themes,,MIT License,2015-12-04T21:16:32Z,2015-12-04T21:16:32Z 229 | ggplot2-themes,https://github.com/awunderground/ggplot2-themes,,https://awunderground.github.io/ggplot2-themes/,,2018-02-11T23:24:24Z,2019-04-19T19:55:42Z 230 | ggplot2_Themes_Workshop,https://github.com/hscarter/ggplot2_Themes_Workshop,How to use theme() as well as built in themes to customize plots with ggplot2.,,,2023-10-06T18:00:58Z,2023-10-27T15:33:35Z 231 | ggplot2_pmap_5_theme,https://github.com/os2137/ggplot2_pmap_5_theme,,,,2023-10-21T11:55:41Z,2023-10-21T11:55:42Z 232 | ggplot2_related_themes,https://github.com/Amz965/ggplot2_related_themes,Summary of ggplot2 related themes,,,2020-11-09T02:42:39Z,2020-12-13T09:14:01Z 233 | ggplot2_stuff,https://github.com/briandconnelly/ggplot2_stuff,"Themes, scripts, etc. for using ggplot2",,,2013-09-17T18:01:32Z,2014-04-23T15:15:48Z 234 | ggplot2_themes,https://github.com/chrisBow/ggplot2_themes,A selection of themes for ggplot2,,MIT License,2018-09-11T19:02:02Z,2021-06-10T07:28:27Z 235 | ggplot2_themes,https://github.com/tkoomar/ggplot2_themes,Does what it says on the tin,,,2018-10-24T20:21:24Z,2020-09-29T01:10:10Z 236 | ggplot2_themes,https://github.com/hw538/ggplot2_themes,,,,2024-08-13T12:20:02Z,2025-08-06T11:27:41Z 237 | ggplot2barnacle,https://github.com/426352237/ggplot2barnacle,Dark mode for ggplot2 themes,,GNU General Public License v3.0,2025-09-18T09:03:38Z,2025-09-21T06:00:07Z 238 | ggplot2bdc,https://github.com/briandconnelly/ggplot2bdc,Collection of themes and tools for modifying ggplot2 plots,,Other,2014-04-23T15:10:19Z,2025-07-09T15:23:51Z 239 | ggplotThemeShifrin,https://github.com/arielshif/ggplotThemeShifrin,A custom ggplot2 theme to make things cute.,,Creative Commons Zero v1.0 Universal,2025-09-06T13:42:17Z,2025-11-21T18:31:19Z 240 | ggplotThemes,https://github.com/timcdlucas/ggplotThemes,My themes for use with ggplot2,,Do What The F*ck You Want To Public License,2015-07-21T14:05:09Z,2025-07-09T15:06:30Z 241 | ggplot_custom_theme_cheatsheet,https://github.com/ddauber/ggplot_custom_theme_cheatsheet,A visual cheatsheet to customise ggplot2 plots.,,,2022-02-26T20:31:10Z,2022-02-26T20:31:15Z 242 | ggplot_theme,https://github.com/brndngrhm/ggplot_theme,creating standard ggplot theme to use for my charts. Based on http://austinclemens.com/blog/2014/07/03/fivethirtyeight-com-style-graphs-in-ggplot2/,,,2015-12-23T19:01:07Z,2015-12-23T20:20:57Z 243 | ggplot_theme,https://github.com/rladies-zurich/ggplot_theme,In this repo you can find all material related to the R-Ladies Zürich meetup event 'Personalize your own ggplot theme' on 01.12.2022,https://www.meetup.com/de-DE/rladies-zurich/events/289394155/,MIT License,2022-11-29T19:03:46Z,2023-11-17T16:10:37Z 244 | ggplot_theme_Publication,https://github.com/koundy/ggplot_theme_Publication,This repo consists of three themes for the ggplot2 and new colour palettes. Enjoy the new themes!,,,2015-04-08T07:34:26Z,2025-11-24T23:22:22Z 245 | ggplot_theme_publication,https://github.com/alan-feng/ggplot_theme_publication,Custom ggplot themes for research publications,,,2021-11-17T01:15:32Z,2025-02-17T00:49:47Z 246 | ggplot_themes,https://github.com/stomperusa/ggplot_themes,examples of themes available for ggplot2,,,2020-06-27T21:10:45Z,2020-06-28T18:04:29Z 247 | ggplot_themes,https://github.com/dchakro/ggplot_themes,An R function to generate themes for publication quality figures from ggplot2 in R,,Mozilla Public License 2.0,2020-08-25T04:56:48Z,2024-07-20T15:28:16Z 248 | ggpomological,https://github.com/gadenbuie/ggpomological,🍑 Pomological plot theme for ggplot2,http://garrickadenbuie.com/project/ggpomological/,Creative Commons Zero v1.0 Universal,2018-02-05T14:58:22Z,2025-10-15T15:50:18Z 249 | ggptt,https://github.com/pttry/ggptt,A collection of ggplot2 themes and functions for use in PTT,,,2018-07-25T11:14:11Z,2025-12-04T07:32:05Z 250 | ggpubs,https://github.com/condwanaland/ggpubs,Publication ready themes for ggplot2,,,2017-02-28T00:25:27Z,2018-04-10T08:11:46Z 251 | ggretrotech,https://github.com/andrewfullerton/ggretrotech,ggplot2 themes inspired by retro technology.,,Other,2024-11-27T00:04:02Z,2024-11-27T00:09:11Z 252 | ggschemes,https://github.com/kssrr/ggschemes,Some additional color schemes & themes for ggplot2.,,MIT License,2022-12-22T15:50:17Z,2022-12-22T15:57:33Z 253 | ggsci,https://github.com/nanxstats/ggsci,🦄 Scientific journal and sci-fi themed color palettes for ggplot2,https://nanx.me/ggsci/,GNU General Public License v3.0,2016-03-25T12:14:26Z,2025-12-01T06:19:19Z 254 | ggsci,https://github.com/cran/ggsci,":exclamation: This is a read-only mirror of the CRAN R package repository. ggsci — Scientific Journal and Sci-Fi Themed Color Palettes for 'ggplot2'. Homepage: https://nanx.me/ggsci/, https://github.com/nanxstats/ggsci Report bugs for this package: https://github.com/nanxstats/ggsci/issues",,,2016-04-04T06:41:52Z,2025-10-25T06:42:06Z 255 | ggshadow,https://github.com/marcmenem/ggshadow,"A collection of geoms for R's 'ggplot2' library. geom_shadowpath(), geom_shadowline(), geom_shadowstep() and geom_shadowpoint() functions draw a shadow below lines to make busy plots more aesthetically pleasing. geom_glowpath(), geom_glowline(), geom_glowstep() and geom_glowpoint() add a neon glow around lines to get a steampunk style.",,GNU General Public License v2.0,2020-04-16T21:16:20Z,2025-08-08T17:29:24Z 256 | ggshredR,https://github.com/hendersontrent/ggshredR,Builds theme and colour palette for ggplot2 based on 80s shred guitar aesthetics.,,MIT License,2020-04-15T23:18:12Z,2020-04-16T10:02:01Z 257 | ggsidekick,https://github.com/seananderson/ggsidekick,Helper function(s) for ggplot2. [Only theme_sleek() for now.],,,2017-02-22T16:44:16Z,2025-11-08T02:51:21Z 258 | ggspark,https://github.com/marcboschmatas/ggspark,ggplot2 Functions to Create Tufte Style Sparklines,,,2024-05-09T11:03:27Z,2025-03-22T08:13:04Z 259 | ggspark,https://github.com/cran/ggspark,:exclamation: This is a read-only mirror of the CRAN R package repository. ggspark — 'ggplot2' Functions to Create Tufte Style Sparklines. Homepage: https://github.com/marcboschmatas/ggspark Report bugs for this package: https://github.com/marcboschmatas/ggspark/issues,,,2024-05-14T02:37:33Z,2025-01-05T22:54:15Z 260 | ggspc,https://github.com/brownag/ggspc,"Custom 'ggplot2' 'Stat', 'Geom', and 'theme' definitions for the 'aqp' 'SoilProfileCollection' object",,GNU General Public License v3.0,2023-02-02T01:14:50Z,2025-06-27T20:07:23Z 261 | ggsports,https://github.com/woobe/ggsports,"ggplot2 geoms, themes and scales for sports data visualisation.",,MIT License,2015-08-02T09:00:08Z,2015-08-02T13:31:50Z 262 | ggsportsfield,https://github.com/RobWHickman/ggsportsfield,ggplot2 annotations and themes for sports field markings,,MIT License,2018-09-20T09:38:50Z,2020-10-06T19:49:47Z 263 | ggstyle,https://github.com/sz-zyp/ggstyle,The `ggstyle` package provides a simple way to enhance your `ggplot2` visualizations by customizing the color schemes and themes.,https://www.r2omics.cn/color.html,GNU General Public License v3.0,2025-03-17T15:11:33Z,2025-11-18T01:06:30Z 264 | ggsu,https://github.com/borstell/ggsu,ggplot2 theme following the visual identity of SU,,MIT License,2021-04-22T18:35:19Z,2021-04-22T22:03:03Z 265 | ggsuprematist,https://github.com/mglev1n/ggsuprematist,Generate Suprematist-style Artwork Using Ggplot2,,Other,2025-01-19T16:06:52Z,2025-01-19T16:07:00Z 266 | ggtailwind,https://github.com/willcanniford/ggtailwind,ggplot2 colour scheme package using the popular tailwind css,,MIT License,2019-11-10T21:20:25Z,2021-11-10T08:54:00Z 267 | ggtea,https://github.com/cran/ggtea,:exclamation: This is a read-only mirror of the CRAN R package repository. ggtea — Palettes and Themes for 'ggplot2' ,,,2021-11-10T00:54:13Z,2021-11-10T00:54:17Z 268 | ggtech,https://github.com/ricardo-bion/ggtech,"ggplot2 tech themes, scales, and geoms",https://twitter.com/ricardobion,,2015-04-02T19:00:39Z,2025-11-22T06:45:10Z 269 | ggtheme,https://github.com/jschoeley/ggtheme,Minimal Theme for ggplot2 with Additional Options,,,2015-03-14T23:31:30Z,2015-03-14T23:45:37Z 270 | ggtheme,https://github.com/sinarueeger/ggtheme,ggplot2 themes for presentation (poster + beamer),,,2019-06-06T08:41:04Z,2025-01-09T16:59:05Z 271 | ggtheme.ois,https://github.com/brilstl/ggtheme.ois,helper function to add ois style to ggplot2,,Other,2021-07-16T12:58:56Z,2021-11-16T12:17:36Z 272 | ggthemeAI,https://github.com/arkraieski/ggthemeAI,"Generate ggplot2 themes with LLMs (through ellmer) for ""vibe coding"", shiny apps, and more",https://arkraieski.github.io/ggthemeAI/,GNU General Public License v3.0,2025-06-15T02:10:24Z,2025-12-01T22:37:12Z 273 | ggthemeassist,https://github.com/calligross/ggthemeassist,A RStudio addin for ggplot2 theme tweaking ,,,2016-02-20T09:57:16Z,2025-11-16T05:35:40Z 274 | ggthemepark,https://github.com/NickGlaettli/ggthemepark,Additional themes for ggplot2,,,2022-01-16T16:49:46Z,2022-01-25T22:09:54Z 275 | ggthemes,https://github.com/jrnold/ggthemes,"Additional themes, scales, and geoms for ggplot2",http://jrnold.github.io/ggthemes/,,2012-09-07T00:00:07Z,2025-12-01T04:50:53Z 276 | ggthemes,https://github.com/cran/ggthemes,":exclamation: This is a read-only mirror of the CRAN R package repository. ggthemes — Extra Themes, Scales and Geoms for 'ggplot2'. Homepage: https://jrnold.github.io/ggthemes/, https://github.com/jrnold/ggthemes, http://jrnold.github.io/ggthemes/ Report bugs for this package: https://github.com/jrnold/ggthemes/issue ...",,,2014-03-13T04:52:17Z,2025-11-30T17:32:48Z 277 | ggthemr,https://github.com/Mikata-Project/ggthemr,Themes for ggplot2.,,,2013-10-06T18:50:41Z,2025-11-11T13:15:56Z 278 | ggtiger,https://github.com/christopherkenny/ggtiger,Princeton brand guidlines-based ggplot2 themes,http://christophertkenny.com/ggtiger/,Other,2025-09-09T02:17:14Z,2025-09-24T15:57:55Z 279 | ggtufte,https://github.com/jrnold/ggtufte,Geoms and themes for ggplot2 inspired by Tufte,,Other,2018-06-04T17:55:57Z,2023-12-30T17:43:43Z 280 | ggugent,https://github.com/llippens/ggugent,ggplot2 theme based on the Ghent University style guide,,MIT License,2023-12-15T11:38:15Z,2023-12-15T12:53:00Z 281 | gguniversity,https://github.com/dougaltoms/gguniversity,ggplot2 themes based on UK university branding,,,2022-10-01T16:40:06Z,2022-10-07T16:53:43Z 282 | ggviews,https://github.com/essicolo/ggviews,ggplot2-style API for holoviews,https://essicolo.github.io/ggviews/,,2025-09-30T00:15:37Z,2025-10-02T16:07:36Z 283 | ggwb,https://github.com/EBukin/ggwb,ggplot2 theme with the WB colours,,Other,2019-01-31T10:14:19Z,2019-01-31T12:26:37Z 284 | gouvdown,https://github.com/spyrales/gouvdown,French government design system for R Markdown,https://spyrales.github.io/gouvdown/,European Union Public License 1.2,2020-04-23T15:03:35Z,2025-09-15T12:38:24Z 285 | govstyle,https://github.com/ukgovdatascience/govstyle,Theme for use with ggplot2 for creating government style visualisations,http://ukgovdatascience.github.io/govstyle/index.html,GNU General Public License v3.0,2016-05-31T17:05:33Z,2025-05-29T11:31:36Z 286 | grattantheme,https://github.com/grattan/grattantheme,Create ggplot2 charts in the Grattan Institute style,https://grattan.github.io/grattantheme/,Other,2018-10-24T22:12:41Z,2025-12-03T00:08:00Z 287 | hdatools,https://github.com/hdadvisors/hdatools,Tools and ggplot2 themes for HDAdvisors / HousingForward Virginia projects,https://hdadvisors.github.io/hdatools/,,2022-11-02T16:47:35Z,2024-11-19T23:29:05Z 288 | hjplottools,https://github.com/alphabetac/hjplottools,A theme for use with ggplot2,,Other,2020-07-25T13:30:06Z,2021-10-06T13:15:59Z 289 | hrbragg,https://github.com/hrbrmstr/hrbragg,"Typography-centric Themes, Theme Components, and Utilities for 'ggplot2' and 'ragg'.",,Other,2021-02-16T06:09:01Z,2025-03-22T10:46:23Z 290 | hrbrthemes,https://github.com/hrbrmstr/hrbrthemes,":lock_with_ink_pen: Opinionated, typographic-centric ggplot2 themes and theme components",,Other,2017-02-11T17:03:01Z,2025-12-03T13:11:08Z 291 | hrbrthemes,https://github.com/cran/hrbrthemes,":exclamation: This is a read-only mirror of the CRAN R package repository. hrbrthemes — Additional Themes, Theme Components and Utilities for 'ggplot2' ",,Other,2017-02-26T05:06:09Z,2024-03-04T03:10:53Z 292 | hrbrthemes-p9,https://github.com/hrbrmstr/hrbrthemes-p9,📈 hrbrthemes for plotnine,https://dailyfinds.hrbrmstr.dev/p/drop-385-2023-12-08-weekend-project,MIT License,2023-12-08T21:42:56Z,2025-03-22T10:16:58Z 293 | ib,https://github.com/isabellabenabaye/ib,"📦 Personal R package, currently containing functions for ggplot2 and my personal ggplot2 theme",,Other,2020-08-09T09:07:55Z,2023-02-14T10:02:14Z 294 | imprint,https://github.com/hrbrmstr/imprint,Create Customized 'ggplot2' and 'R Markdown' Themes for Your Organization,,Other,2018-05-25T00:11:45Z,2025-10-06T09:24:34Z 295 | inlegend,https://github.com/MilesMcBain/inlegend,Styling for inset ggplot2 map legends,,Other,2020-08-13T05:31:24Z,2025-03-22T08:13:51Z 296 | insperplot,https://github.com/viniciusoike/insperplot,Insper themed ggplot2 extensions,,Other,2025-10-10T14:24:52Z,2025-11-25T01:55:56Z 297 | iomthemes,https://github.com/iom/iomthemes,IOM 'ggplot2' Theme and Colour Palettes,https://iom.github.io/iomthemes/,Other,2024-12-08T17:04:39Z,2025-01-17T17:30:12Z 298 | javplot,https://github.com/jasav/javplot,"My custom theme for ggplot2, uploaded to github so I can install it anywhere.",,,2025-06-20T06:36:00Z,2025-06-20T07:42:27Z 299 | jbplot,https://github.com/jabenninghoff/jbplot,My personal collection of ggplot2 themes and functions,https://jabenninghoff.github.io/jbplot/,Other,2022-01-09T20:59:40Z,2025-08-13T01:03:36Z 300 | jcolors,https://github.com/cran/jcolors,":exclamation: This is a read-only mirror of the CRAN R package repository. jcolors — Colors Palettes for R and 'ggplot2', Additional Themes for 'ggplot2'. Homepage: https://jaredhuling.org/jcolors/ Report bugs for this package: https://github.com/jaredhuling/jcolors/issues",,,2017-07-07T10:21:17Z,2024-03-30T02:34:10Z 301 | jmcplot,https://github.com/jaredmusil/jmcplot,Helps create and export ggplot2 charts in the style used by JMC,,,2022-03-30T03:29:35Z,2022-03-30T03:37:49Z 302 | jonohey,https://github.com/matiasandina/jonohey,An R package with color palettes and ggplot2 theme inspired by Jono Hey’s sketches,https://matiasandina.github.io/jonohey/,Creative Commons Attribution 4.0 International,2025-10-17T16:44:52Z,2025-11-06T01:49:51Z 303 | jptheme,https://github.com/MattCowgill/jptheme,ggplot2 theme for Apricitas blog,,Other,2021-12-08T02:27:54Z,2023-10-28T21:26:16Z 304 | jrh.gg.theme,https://github.com/jrhawley/jrh.gg.theme,ggplot2 theming functions,,GNU General Public License v3.0,2017-10-24T20:38:31Z,2017-10-24T20:38:31Z 305 | kaimeleon,https://github.com/KaiAragaki/kaimeleon,ggplot2 theme for my personal website,,Other,2025-01-30T05:21:28Z,2025-01-31T20:13:28Z 306 | kaplot,https://github.com/mkapur/kaplot,mostly custom ggplot2 themes,,,2020-04-30T21:55:25Z,2020-09-15T21:45:58Z 307 | kaththemes,https://github.com/katherine-taylor/kaththemes,Custom ggplot2 themes for Katherine Taylor,,Other,2021-08-23T02:22:57Z,2021-08-23T02:29:26Z 308 | ktheme,https://github.com/KTH-Library/ktheme,R package with styling assets and a ggplot2 theme and fonts to conform with the graphical profile for KTH,,GNU Affero General Public License v3.0,2020-01-08T15:23:05Z,2025-11-21T10:47:19Z 309 | kubrand,https://github.com/bvancilku/kubrand,KU Branding for ggplot2,https://bvancilku.github.io/kubrand/,GNU General Public License v3.0,2021-03-12T19:53:52Z,2022-07-20T22:36:21Z 310 | lato,https://github.com/briandconnelly/lato,Minimal and flexible 'ggplot2' themes using 'Lato' Typeface,,Other,2017-11-18T00:31:14Z,2025-03-22T11:13:00Z 311 | lazerhawk,https://github.com/m-clark/lazerhawk,An R package of miscellaneous functions.,,Other,2015-11-16T00:37:06Z,2025-04-17T11:12:22Z 312 | luigg,https://github.com/christopherkenny/luigg,Mario Themed 'ggplot2' Extensions,http://christophertkenny.com/luigg/,Other,2023-04-12T00:44:38Z,2023-04-25T20:20:50Z 313 | make-your-own-ggplot2-theme,https://github.com/aaronschiff/make-your-own-ggplot2-theme,,,,2020-02-10T03:13:13Z,2020-02-19T22:20:27Z 314 | makeover_monday,https://github.com/mrafa3/makeover_monday,Repo for Makeover Monday exercises,,,2020-09-21T11:32:54Z,2021-01-27T20:51:58Z 315 | mcthemer,https://github.com/ZhenyaKosovan/mcthemer,ggplot2 theme and colors for MasterCard-themed plots,,Other,2025-06-28T06:38:53Z,2025-06-28T06:38:57Z 316 | mdthemes,https://github.com/thomas-neitmann/mdthemes,Markdown Themes for 'ggplot2',,Other,2020-04-03T08:27:50Z,2025-05-26T10:15:47Z 317 | mdthemes,https://github.com/cran/mdthemes,:exclamation: This is a read-only mirror of the CRAN R package repository. mdthemes — Markdown Themes for 'ggplot2' ,,Other,2020-07-02T16:28:53Z,2020-07-02T16:29:02Z 318 | metallicaRt,https://github.com/johnmackintosh/metallicaRt,R package of colour palettes based on Metallica studio album covers. ,https://johnmackintosh.com/metallicaRt/,Other,2020-09-22T20:06:05Z,2025-03-22T08:13:55Z 319 | michaelmallari.r,https://github.com/michaelmallari/michaelmallari.r,A small package of custom utility functions and ggplot2 theme.,,Other,2025-05-17T21:05:19Z,2025-05-18T16:51:10Z 320 | minithemes,https://github.com/jmclawson/minithemes,Simple themes and color palettes for ggplot2,https://jmclawson.github.io/minithemes/,Other,2024-02-01T15:20:24Z,2024-02-26T15:17:56Z 321 | module-9-visualizing-R,https://github.com/daltonwesley/module-9-visualizing-R,"# First you need to install these packages install.packages(""lattice"") install.packages(""ggplot2"") library(lattice) library(ggplot2) # Use the https://vincentarelbundock.github.io/Rdatasets/datasets.html link to get a dataset, below is the Cardiac Data for Domestic dogs which is the one I used # https://vincentarelbundock.github.io/Rdatasets/csv/boot/dogs.csv data_from_file <- read.table(file.choose(),header=T,sep="","")[,2:3] # Plot the data via the built-in boxplot() function boxplot((lvp*100)~mvo,data_from_file, main=""Cardiac Data for Domestic Dogs"", xlab=""mvo"", ylab=""Percent lvp"", las=1, col=rainbow(6)) # Use the lattice package's bwplot() function to plot the data bwplot((lvp*100)~mvo, data=data_from_file, horizontal=FALSE, main=""lvp Rate"", xlab=""mvo"", ylab=""Percent lvp"", las=1, par.settings = list(box.rectangle = list(fill=rainbow(6)))) # Plotting data through ggplot2 # Here I needed to take the Time data and get it converted to factors data_for_gg <- data_from_file data_for_gg$mvo <- as.factor(data_for_gg$mvo) # Take the data and plot it as a geom_boxplot() ggplot(data_for_gg, aes(x=mvo, y=lvp*100, fill=mvo)) + geom_boxplot() + labs(title=""Cardiac Data for Domestic Dogs"", x=""mvo"", y=""Percent lvp"") + theme_classic()",,,2021-03-15T03:25:19Z,2021-03-15T03:25:51Z 322 | mondriaRt,https://github.com/borstell/mondriaRt,Make Mondria(a)n-style artwork with Python and R/ggplot2,,,2020-04-26T19:49:05Z,2020-10-04T12:02:23Z 323 | mpinltheme,https://github.com/joerodd/mpinltheme,ggplot2 Theme Consistent with MPI for Psycholinguistics Corporate Identity,,,2019-03-07T13:37:43Z,2019-04-05T12:16:12Z 324 | mplstyle,https://github.com/smortezah/mplstyle,Matplotlib style sheets based on ggplot2 (in R),,GNU General Public License v3.0,2021-04-30T14:18:43Z,2025-06-22T07:29:41Z 325 | msthemes,https://github.com/mschnetzer/msthemes,Custom ggplot2 theme,,,2018-06-28T12:29:36Z,2024-08-25T10:45:49Z 326 | mthemer,https://github.com/sjewo/mthemer,A ggplot2 theme to match the mtheme latex beamer theme,,,2017-11-17T15:04:09Z,2020-06-05T13:33:10Z 327 | my-ggthemes,https://github.com/Elizemiku/my-ggthemes,A Rmarkdown document about themes of ggplot2,,,2017-03-23T16:25:45Z,2018-08-17T14:26:19Z 328 | my_ggthemes,https://github.com/dhammarstrom/my_ggthemes,Themes for ggplot2,,,2015-05-05T11:16:37Z,2015-05-05T11:55:18Z 329 | mythesisthemes,https://github.com/Rumenick/mythesisthemes,ggplot2 themes used in my Phd thesis,,GNU General Public License v3.0,2018-09-15T16:26:58Z,2018-09-15T19:59:34Z 330 | naglr,https://github.com/tnagler/naglr,Custom ggplot2 theme and colors,,GNU General Public License v3.0,2017-05-12T15:16:31Z,2022-05-07T02:29:50Z 331 | netflix-data-analysis,https://github.com/japnitahuja/netflix-data-analysis,Analysis of Movies and TV shows on Netflix in R,,MIT License,2023-03-31T23:14:03Z,2024-08-13T15:05:55Z 332 | netflix-data-visualisation,https://github.com/Ishwin9/netflix-data-visualisation,"Developed R Programming scripts for data analysis and visualization, with notable libraries including dplyr and tidy verse for data manipulation and ggplot2 for constructing graphs.",,MIT License,2023-04-26T00:46:36Z,2023-04-26T00:55:26Z 333 | nmthemes,https://github.com/maehler/nmthemes,Some additional themes for ggplot2,,MIT License,2017-11-08T15:47:24Z,2020-03-13T14:19:05Z 334 | noradplot,https://github.com/noradno/noradplot,Provides Norads colour palette and plot style for creating ggplot2 graphics.,,Other,2022-10-10T21:04:17Z,2023-06-20T16:20:04Z 335 | nordic_noir,https://github.com/taylorrodgers/nordic_noir,Provides color palettes + theme_pander inspired function for ggplot2,,Other,2023-09-24T17:27:47Z,2023-09-24T18:13:58Z 336 | nrsplot,https://github.com/ScotGovAnalysis/nrsplot,R package that helps create ggplot2 charts in the style used by National Records of Scotland,,,2019-03-12T09:28:22Z,2024-02-01T15:19:33Z 337 | oiplot,https://github.com/OpportunityInsights/oiplot,An R package that helps create and export ggplot2 charts in the style used at Opportunity Insights.,https://opportunityinsights.org,MIT License,2023-07-13T19:33:38Z,2025-07-25T21:30:09Z 338 | oit-an-CU-theme,https://github.com/UCBoulder/oit-an-CU-theme,A ggplot2 theme with CU Boulder branding,,,2020-11-02T18:39:48Z,2024-08-09T19:52:39Z 339 | omni,https://github.com/rfortherestofus/omni,"RMarkdown template, ggplot2 theme, and table function for OMNI Institute",https://rfortherestofus.github.io/omni/,Other,2020-03-07T01:35:34Z,2025-11-20T23:58:42Z 340 | onroerenderfgoedtheme,https://github.com/OnroerendErfgoed/onroerenderfgoedtheme,ggplot2 theme ,,,2016-04-04T14:47:06Z,2016-11-30T15:10:06Z 341 | onsvplot,https://github.com/pabsantos/onsvplot, National Road Safety Observatory (ONSV) Style for 'ggplot2' Graphics,https://pabsantos.github.io/onsvplot/,Other,2023-07-14T19:57:03Z,2023-12-11T16:36:11Z 342 | onsvplot,https://github.com/cran/onsvplot,:exclamation: This is a read-only mirror of the CRAN R package repository. onsvplot — National Road Safety Observatory (ONSV) Style for 'ggplot2' Graphics. Homepage: https://github.com/pabsantos/onsvplot/ Report bugs for this package: https://github.com/pabsantos/onsvplot/issues/,,Other,2023-09-05T20:31:02Z,2023-09-05T20:31:07Z 343 | open-science-with-r,https://github.com/carpentries-incubator/open-science-with-r,"Carpentry-style lesson on how to use R, RStudio together with git & Github to promote Open Science practices.",https://carpentries-incubator.github.io/open-science-with-r/,Other,2019-11-28T14:20:20Z,2025-03-22T08:13:54Z 344 | ouRstyle,https://github.com/PeterGrahamJersey/ouRstyle,Your colours and ggplot2 theme in R.,,MIT License,2019-06-08T09:53:18Z,2019-07-07T11:10:27Z 345 | p3themes,https://github.com/p3lab/p3themes,Using P3 themes for ggplot2 objects ,https://p3lab.github.io/p3themes/,Other,2021-03-31T19:07:03Z,2021-05-24T18:05:01Z 346 | peopleanalytics,https://github.com/eknud/peopleanalytics,A package with some basic HR functions and a Namely ggplot2 theme,,,2017-03-05T19:48:07Z,2019-02-12T18:36:52Z 347 | petgg,https://github.com/peteconomia/petgg,Pacote R para ggplot2,,,2020-12-01T20:36:29Z,2021-07-28T13:08:21Z 348 | pilot,https://github.com/olihawkins/pilot,A minimal ggplot2 theme with an accessible discrete color palette.,,"BSD 3-Clause ""New"" or ""Revised"" License",2019-04-06T13:14:25Z,2025-10-14T07:57:01Z 349 | plot_theme,https://github.com/ejparajon/plot_theme,This repo contains code used to create a custom ggplot2 theme in order to standardize graphical outputs.,,,2025-01-03T17:39:44Z,2025-06-28T16:49:38Z 350 | plotnineseqsuite,https://github.com/CaoTianze/plotnineseqsuite,plotnineSeqSuite: a Python package for visualizing sequence data using ggplot2 style,https://caotianze.github.io/plotnineseqsuite/,MIT License,2023-05-05T06:47:51Z,2025-10-06T09:19:06Z 351 | plotthemeR,https://github.com/quantum-dan/plotthemeR,Just storing my default plot theme setup for ggplot2.,,,2022-02-28T17:35:18Z,2022-02-28T17:35:48Z 352 | plottools,https://github.com/rosswilson-nz/plottools,"Extend `ggplot2` with themes, colour palettes, and geoms",,Other,2025-09-23T22:54:58Z,2025-10-24T03:10:15Z 353 | plotutils,https://github.com/L-Groeninger/plotutils,Setting a custom ggplot2 theme,,Other,2021-10-04T13:35:51Z,2021-10-04T15:41:20Z 354 | plummy,https://github.com/royfrancis/plummy,ggplot2 custom themes,http://royfrancis.github.io/plummy/,GNU General Public License v3.0,2023-05-05T16:05:02Z,2025-11-28T16:09:24Z 355 | posner_catalyst_presentation,https://github.com/mrafa3/posner_catalyst_presentation,Code for visualizations for the Posner Development Catalyst presentation and blog (February 2019),https://posnercenter.org/catalyst_entry/global-forecasting-a-tool-for-a-systems-thinking-approach-to-development/,,2020-09-15T15:38:29Z,2021-01-27T20:56:31Z 356 | possibilitylabthemes,https://github.com/Possibility-Lab/possibilitylabthemes,Possibility Lab's ggplot2 theme,,Other,2022-09-28T22:56:30Z,2023-07-24T16:56:31Z 357 | projectStyleR,https://github.com/HTGenomeAnalysisUnit/projectStyleR,utility package for R designed to enforce a consistent visual identity across all `ggplot2` plots generated for a scientific project,,,2025-09-01T08:46:03Z,2025-12-01T15:20:29Z 358 | quartomonothemer,https://github.com/kazuyanagimoto/quartomonothemer,"Makes a Monotone Theme for Quarto Revealjs, {ggplot2}, and {gt}.",http://kazuyanagimoto.com/quartomonothemer/,Other,2023-02-06T23:04:48Z,2025-08-03T14:05:18Z 359 | r-visuals-by-owais,https://github.com/econ-owais/r-visuals-by-owais,"This repository is a collection of R plots and data visualizations I’ve created using tools like ggplot2, base R, and other libraries. It showcases my work in statistical graphics, exploratory data analysis, and professional visualizations, mainly focused on themes related to economics and public policy.",https://public.tableau.com/app/profile/owais.shah6191/vizzes,,2025-04-07T03:09:51Z,2025-09-17T07:03:51Z 360 | randplot,https://github.com/RANDCorporation/randplot,A ggplot2 theme and color palettes for making graphics in the style that the RAND Communications Design team uses.,,Other,2021-09-02T16:43:08Z,2025-10-31T12:39:18Z 361 | ratlas,https://github.com/atlas-aai/ratlas,Custom graphics and report generation for @atlas-aai,https://ratlas.netlify.app,,2018-09-26T16:14:04Z,2025-12-03T09:08:48Z 362 | rccthemes,https://github.com/cancercentrum/rccthemes,"RCC themes, scales and geoms for ggplot2",https://cancercentrum.github.io/rccthemes/,,2022-12-20T08:44:34Z,2022-12-20T09:01:26Z 363 | rcookbook,https://github.com/bbc/rcookbook,Reference manual for creating BBC-style graphics using the BBC's bbplot package built on top of R's ggplot2 library,,,2019-01-16T08:47:28Z,2025-10-27T22:55:13Z 364 | relper,https://github.com/vbfelix/relper,R Package: Miscellaneous functions to assist in data cleaning and visualization,https://vbfelix.github.io/relper/,Other,2020-05-09T22:04:20Z,2025-02-01T18:57:01Z 365 | retrowave_theme,https://github.com/jotunnch/retrowave_theme,"I want a dark theme for my ggplot2, and retrowave is all the rage these days",,,2019-08-02T19:08:30Z,2019-08-07T18:22:41Z 366 | rkicolors,https://github.com/lekroll/rkicolors,This R Package applies a RKI-like theme to a ggplot2 plot and also includes different color/fill palettes based on the RKI Corporate Design.,https://lekroll.github.io/rkicolors/,MIT License,2018-08-28T09:40:43Z,2018-08-30T08:44:16Z 367 | rltheme,https://github.com/mskyttner/rltheme,R package with styling assets and a ggplot2 theme and fonts to conform with the graphical profile for Redpill-Linpro,https://mskyttner.github.io/rltheme,GNU Affero General Public License v3.0,2020-01-28T09:22:02Z,2023-05-30T16:28:09Z 368 | rnoaa,https://github.com/Cesar-Urteaga/rnoaa,"An R package to get, clean, and visualize earthquake data from the NOAA.",,GNU General Public License v3.0,2017-08-11T23:33:04Z,2017-09-16T17:33:07Z 369 | rockthemes,https://github.com/johnmackintosh/rockthemes,R colour palettes based on classic rock album covers. ,https://johnmackintosh.github.io/rockthemes/,GNU General Public License v3.0,2020-10-07T22:59:23Z,2025-03-22T08:13:55Z 370 | rosepine-theme,https://github.com/msjahid/rosepine-theme,A custom ggplot2 theme inspired by the Rosé Pine aesthetic,,,2024-11-27T12:41:59Z,2024-12-19T14:18:07Z 371 | rphl,https://github.com/CityOfPhiladelphia/rphl,"R package with functions for common use in City of Philadelphia projects, including color palettes and graph themes compatible with ggplot2..",,MIT License,2019-10-11T14:23:54Z,2021-07-09T16:46:27Z 372 | s4ggthemes,https://github.com/stats4good/s4ggthemes,ggplot2 and highcharter themes for the S4G group,,GNU General Public License v3.0,2018-07-17T18:07:02Z,2018-07-17T18:39:03Z 373 | satrday-tw-ggtheme-intro,https://github.com/shihjyun/satrday-tw-ggtheme-intro,2020 10/16 SATRDAY TAIWAN : Create Your Own Plot Theme with ggplot2,,,2020-10-17T01:43:52Z,2020-10-17T01:49:11Z 374 | sccthemes,https://github.com/SCC-Planning/sccthemes,R package that helps create and export ggplot2 graphics in the style used by the Suffolk County Council. Inspired by {bbplot},https://scc-planning.github.io/scc-cookbook/,Other,2022-09-28T12:56:57Z,2024-05-15T16:33:46Z 375 | schemeR,https://github.com/schuyler-smith/schemeR,my ggplot2 theme,,,2023-04-11T15:23:49Z,2024-12-05T13:23:20Z 376 | scifi,https://github.com/lovenum928/scifi,🦄 Scientific journal and sci-fi themed color palettes for ggplot2,,Other,2025-09-07T10:52:13Z,2025-09-11T10:45:16Z 377 | sciplots,https://github.com/garen-anderson/sciplots,Themes for ggplot2,,Other,2021-11-16T18:55:48Z,2021-11-16T20:08:04Z 378 | seqriseR,https://github.com/linruichai/seqriseR,Extra ggplot themes and scales used on seqrise platform.,https://seqrise.com/zh/index,,2017-05-24T10:37:03Z,2017-05-26T07:16:18Z 379 | severance,https://github.com/ivelasq/severance,The severance package contains color palettes inspired by the show Severance,,Other,2022-09-09T04:56:04Z,2025-11-07T17:37:31Z 380 | sfthemes,https://github.com/amirmasoudabdol/sfthemes,"An accessible set of themes and color palettes optimized for light/dark appearances, and different screen sizes",https://sfthemes.amirmasoudabdol.name,Other,2020-08-17T15:05:47Z,2025-10-06T09:32:52Z 381 | sgplot,https://github.com/ScotGovAnalysis/sgplot,Graphic styles and colours for Scottish Government plots,https://scotgovanalysis.github.io/sgplot/,Other,2023-01-19T15:51:06Z,2025-11-30T11:31:06Z 382 | sgthemes,https://github.com/statgarten/sgthemes,Additional Statgarten style themes for ggplot2,,,2023-01-02T06:35:40Z,2025-10-14T01:54:58Z 383 | shackettMisc,https://github.com/shackett/shackettMisc,Assorted functions for plotting (ggplot2 themes) and data manipulation,,,2016-09-09T16:05:25Z,2016-09-09T16:07:37Z 384 | shakiRa,https://github.com/camartinezbu/shakiRa,A R package that creates color palettes based on Shakira's albums.,,Other,2021-05-21T23:28:45Z,2023-08-27T02:40:32Z 385 | ssvTracks,https://github.com/jrboyd/ssvTracks,generate nice looking track style plots using seqsetvis (data.table and ggplot2),,,2022-07-12T19:09:05Z,2025-04-20T14:05:53Z 386 | statR,https://github.com/statistikZH/statR,ZH-color-scheme & theme_stat template for ggplot2.,https://statistikzh.github.io/statR/,GNU General Public License v3.0,2017-11-09T09:39:53Z,2025-10-28T17:13:51Z 387 | statThemes,https://github.com/STATWORX/statThemes,Provides Themes For ggplot2 Graphics,https://statworx.github.io/statThemes/,Other,2022-05-10T21:12:12Z,2022-06-22T10:01:05Z 388 | stevethemes,https://github.com/svmiller/stevethemes,Steve's {ggplot2} themes and related theme elements,http://svmiller.com/stevethemes,Other,2023-01-22T14:52:33Z,2025-03-22T10:25:30Z 389 | stevethemes,https://github.com/cran/stevethemes,:exclamation: This is a read-only mirror of the CRAN R package repository. stevethemes — Steve's 'ggplot2' Themes and Related Theme Elements. Homepage: http://svmiller.com/stevethemes/ Report bugs for this package: https://github.com/svmiller/stevethemes/issues,,Other,2023-02-01T03:38:40Z,2023-02-01T03:38:46Z 390 | styleBreton,https://github.com/juanlbreton/styleBreton,R package for styling ggplot2 plots with Breton look and feel.,,Other,2023-09-21T21:14:59Z,2025-09-18T23:26:44Z 391 | styler,https://github.com/kazumov/styler,GGPlot2 color palette selector,,MIT License,2019-11-26T23:15:52Z,2019-11-26T23:29:09Z 392 | suezalla,https://github.com/sucanavan/suezalla,My custom ggplot2 theme and colour palette package,,,2025-05-03T09:38:21Z,2025-05-07T13:39:00Z 393 | syknappticThemes,https://github.com/knapply/syknappticThemes,Personal ggplot2 themes,,GNU General Public License v3.0,2018-01-28T19:47:44Z,2018-01-28T20:35:05Z 394 | tadaathemes,https://github.com/tadaadata/tadaathemes,Yet another ggplot2 theme package,https://tadaadata.github.io/tadaathemes,MIT License,2020-05-08T00:02:44Z,2024-02-01T08:30:30Z 395 | tariffTheme,https://github.com/andreasljungstrm/tariffTheme,ggplot2 theme for visualising reciprocal tariffs ,,MIT License,2025-04-08T13:23:29Z,2025-04-08T14:04:52Z 396 | taylor,https://github.com/wjakethompson/taylor,"A comprehensive resource for data on Taylor Swift songs, and ggplot2 helper functions",https://taylor.wjakethompson.com,Other,2021-06-25T19:12:45Z,2025-10-30T16:51:46Z 397 | taylorswiftthemes,https://github.com/mfgeary/taylorswiftthemes,"Themes, scales, and geoms for `ggplot2` (Taylor's Version)",,Other,2023-04-17T21:42:03Z,2023-05-18T03:26:44Z 398 | ternary-zoom,https://github.com/Zhiyu-Wei/ternary-zoom, visualizes 3-dimensional compositional data in a 2D projected ternary-style plot using ggplot2.,,,2025-05-21T09:18:03Z,2025-05-23T08:58:01Z 399 | tgamtheme,https://github.com/globeandmail/tgamtheme,The Globe and Mail's graphics theme for ggplot2,https://globeandmail.github.io/tgamtheme,Other,2021-01-20T17:43:12Z,2025-08-25T16:56:40Z 400 | tgamtheme,https://github.com/cran/tgamtheme,":exclamation: This is a read-only mirror of the CRAN R package repository. tgamtheme — Globe and Mail Graphics Theme for 'ggplot2'. Homepage: https://github.com/globeandmail/tgamtheme, https://globeandmail.github.io/tgamtheme/ Report bugs for this package: https://github.com/globeandmail/tgamtheme/issues",,Other,2021-02-05T11:32:24Z,2021-02-05T11:32:31Z 401 | thematic,https://github.com/rstudio/thematic,"Theme ggplot2, lattice, and base graphics based on a few simple settings.",https://rstudio.github.io/thematic/,Other,2020-03-06T23:01:11Z,2025-12-04T14:11:23Z 402 | thematic,https://github.com/cran/thematic,":exclamation: This is a read-only mirror of the CRAN R package repository. thematic — Unified and Automatic 'Theming' of 'ggplot2', 'lattice', and 'base' R Graphics. Homepage: https://rstudio.github.io/thematic/, https://github.com/rstudio/thematic Report bugs for this package: https://github.com/rstudio/thematic/iss ...",,Other,2021-01-29T18:03:36Z,2025-09-30T02:00:33Z 403 | theme61,https://github.com/e61-Institute/theme61,Create graphs in the e61 Institute style,https://e61-institute.github.io/theme61/,MIT License,2022-04-07T03:53:28Z,2025-11-30T11:35:25Z 404 | themeBCR,https://github.com/ClassicCK/themeBCR,A package for generating plots in ggplot2 with the color schemes of the Bird Conservancy of the Rockies and the birder game Wingspan,,,2023-08-23T19:05:58Z,2023-08-23T22:01:56Z 405 | themeBaseball,https://github.com/ClassicCK/themeBaseball,A package for generating plots in ggplot2 with the color schemes of the Major League Baseball Franchises,,MIT License,2023-08-23T21:57:06Z,2023-08-23T21:57:59Z 406 | themeBayer,https://github.com/Connor-Bayer/themeBayer,An extension compatible with ggplot that adds theme colors for easy usage in R,,Other,2022-11-17T18:33:54Z,2025-07-09T15:06:19Z 407 | themeFreecastle,https://github.com/LangeTo/themeFreecastle,Customized theme for ggplot2,,,2023-05-04T10:48:20Z,2023-09-15T18:45:56Z 408 | themeKI,https://github.com/vilgot-huhn/themeKI,custom ggplot2 theme with Karolinska Institutet colour palette and font,,MIT License,2024-05-15T18:31:07Z,2025-09-30T08:39:50Z 409 | themeSergio,https://github.com/Sergiollaneza/themeSergio,Package with my favourite ggplot2 theme,,,2024-09-07T23:49:28Z,2024-09-09T08:43:01Z 410 | themeTom,https://github.com/thmcmahon/themeTom,Tom's default ggplot2 theme,,,2017-07-18T01:13:54Z,2017-07-18T01:14:14Z 411 | theme_adfg,https://github.com/commfish/theme_adfg,A ggplot2 theme for reproducible figures in R.,,,2025-09-04T17:07:16Z,2025-09-23T22:46:00Z 412 | theme_bray,https://github.com/fr-pscz/theme_bray,R package implementing a ggplot2 theme matching my LaTeX theme.,,Other,2021-10-18T16:38:05Z,2021-10-19T18:07:38Z 413 | theme_ebt,https://github.com/BurkyVIE/theme_ebt,A ggplot2 theme ,,,2019-04-19T06:06:05Z,2021-03-03T18:16:50Z 414 | theme_fivethirtyeight,https://github.com/alex23lemm/theme_fivethirtyeight,ggplot2 theme that mimics themes of fivethirtyeight.com plots,,,2014-07-29T08:47:00Z,2024-10-13T20:59:43Z 415 | theme_lessismore,https://github.com/allan-ripley/theme_lessismore,A minimalist ggPlot2 theme for publication ready plots.,,,2019-03-29T14:12:24Z,2019-03-29T19:38:43Z 416 | theme_m,https://github.com/martinopertti/theme_m,Tema personalizado de ggplot2,,,2021-01-07T19:55:45Z,2021-10-26T15:05:14Z 417 | theme_mapc,https://github.com/aseemdeodhar/theme_mapc,Developing a ggplot2 theme consistent with MAPC's design language,,GNU General Public License v3.0,2020-12-06T14:52:21Z,2020-12-17T16:04:25Z 418 | theme_memorylab,https://github.com/SlimStampen/theme_memorylab,A ggplot2 theme for MemoryLab,,,2023-12-01T15:20:10Z,2023-12-01T15:20:49Z 419 | theme_oppenheimer,https://github.com/TokiLiam/theme_oppenheimer,An Oppenheimer inspired ggplot2 theme,,MIT License,2023-07-23T16:43:28Z,2023-07-23T18:09:58Z 420 | theme_pauli,https://github.com/paulapereda/theme_pauli,Tema de ggplot2 para gráficos personales,,,2025-04-19T14:58:26Z,2025-04-19T14:58:31Z 421 | theme_ubicomp,https://github.com/nielsvanberkel/theme_ubicomp,Theme for ggplot2 and helper functions,,MIT License,2017-02-03T08:59:40Z,2019-09-23T23:03:10Z 422 | theme_zach,https://github.com/zachary-richardson16/theme_zach,"A custom, sleek ggplot2 theme in R",,,2025-09-22T21:46:12Z,2025-10-01T18:13:24Z 423 | themedenv,https://github.com/eldenvo/themedenv,theme_denv for ggplot2 theming,,,2018-02-18T17:23:05Z,2018-03-13T18:38:08Z 424 | themefurmanu,https://github.com/scottamoore/themefurmanu,Furman ggplot2 theme package with font fallback,,Other,2025-05-14T17:31:34Z,2025-07-27T14:21:34Z 425 | themejj,https://github.com/JanaJarecki/themejj,theme for ggplot2,,,2016-12-21T09:26:57Z,2020-09-02T09:29:56Z 426 | themepubr,https://github.com/Carolusian/themepubr,A ggplot2 theme,,,2017-10-24T15:11:39Z,2017-10-24T15:12:03Z 427 | themeresolved,https://github.com/beresolved/themeresolved,R package for a ggplot2 resolved theme in line with the company house style,,,2019-10-16T08:14:27Z,2022-10-11T10:18:49Z 428 | themes360info,https://github.com/360-info/themes360info,Helpers for creating graphics with ggplot2 that align with 360info style guides,,Creative Commons Attribution 4.0 International,2021-11-22T04:25:15Z,2025-03-22T18:54:42Z 429 | tidy-tuesday-style,https://github.com/megpay/tidy-tuesday-style,A repo to store ggplot2 style for tidytuesday plots,,MIT License,2024-01-14T14:08:58Z,2024-01-14T14:08:58Z 430 | tidy_tuesday,https://github.com/mrafa3/tidy_tuesday,Repo for Tidy Tuesday exercises,,,2020-09-21T19:25:02Z,2024-07-15T17:15:57Z 431 | tinythemes,https://github.com/eddelbuettel/tinythemes,Lightweight Repackaging of 'Themes' for 'ggplot2',,Other,2023-12-11T17:37:21Z,2025-11-23T21:25:47Z 432 | tinythemes,https://github.com/cran/tinythemes,:exclamation: This is a read-only mirror of the CRAN R package repository. tinythemes — Lightweight Repackaging of 'Themes' for 'ggplot2'. Homepage: https://github.com/eddelbuettel/tinythemes Report bugs for this package: https://github.com/eddelbuettel/tinythemes/issues,,Other,2023-12-19T02:39:57Z,2025-10-02T13:38:46Z 433 | toms_ggplot2_themes,https://github.com/bd-41201/toms_ggplot2_themes,Some files that can be run to create better themes for certain graphics.,,,2015-04-08T20:56:00Z,2015-04-08T21:04:53Z 434 | tpltheme,https://github.com/connorrothschild/tpltheme,📊 Custom theme in the style of the Texas Policy Lab,,,2019-07-15T16:56:17Z,2022-08-30T07:07:06Z 435 | tree-height-maps-meta,https://github.com/milos-agathon/tree-height-maps-meta,"In this repo, I'll guide you through the process of downloading the latest tree canopy height data from Meta and the World Resources Institute, with a detailed resolution of 1 meter. You'll learn how to create clear static maps using ggplot2 in both light and dark themes, as well as interactive maps with leaflet",,,2024-05-12T15:33:04Z,2025-03-01T22:14:16Z 436 | tvthemes,https://github.com/Ryo-N7/tvthemes,ggplot2 themes and palettes based on your favorite TV shows,https://ryo-n7.github.io/tvthemes/,GNU General Public License v3.0,2019-03-31T04:54:54Z,2025-11-10T12:47:49Z 437 | tvthemes,https://github.com/cran/tvthemes,:exclamation: This is a read-only mirror of the CRAN R package repository. tvthemes — TV Show Themes and Color Palettes for 'ggplot2' Graphics. Homepage: https://github.com/Ryo-N7/tvthemes Report bugs for this package: https://github.com/Ryo-N7/tvthemes/issues,,,2019-09-03T09:03:46Z,2024-08-24T16:26:22Z 438 | twriTemplates,https://github.com/TxWRI/twriTemplates,Internal R package to standardize report and figure formats,https://txwri.github.io/twriTemplates/,Creative Commons Zero v1.0 Universal,2021-05-25T20:48:24Z,2022-02-07T17:59:23Z 439 | ucsftheme,https://github.com/anobel/ucsftheme,use official UCSF Color Themes in R and ggplot2,,,2018-03-05T23:58:24Z,2023-03-25T06:42:31Z 440 | uganda_food_security_report,https://github.com/mrafa3/uganda_food_security_report,"Code for ""Achieving Food Security in Uganda (August 2018)",https://s3-us-west-2.amazonaws.com/drupalwebsitepardee/pardee/public/Pardee_Food_Security_report_v1.pdf,,2020-09-17T20:27:46Z,2021-01-27T20:53:08Z 441 | unam.theme,https://github.com/alberto-mateos-mo/unam.theme,ggplot2 theme for UNAM community,,Creative Commons Attribution 4.0 International,2020-01-19T04:36:03Z,2020-07-31T03:26:18Z 442 | unhcrthemes,https://github.com/unhcr-dataviz/unhcrthemes,UNHCR branded theme for ggplot2 and data visualization colour palettes,https://unhcr-dataviz.github.io/unhcrthemes/,Other,2021-01-28T13:38:55Z,2025-12-03T13:12:10Z 443 | unhcrthemes,https://github.com/cran/unhcrthemes,":exclamation: This is a read-only mirror of the CRAN R package repository. unhcrthemes — UNHCR 'ggplot2' Theme and Colour Palettes. Homepage: https://github.com/unhcr-dataviz/unhcrthemes, https://unhcr-dataviz.github.io/unhcrthemes/ Report bugs for this package: https://github.com/unhcr-dataviz/unhcrthemes/issues",,Other,2023-11-21T02:42:50Z,2025-09-04T12:56:25Z 444 | urbnthemes,https://github.com/UrbanInstitute/urbnthemes,Urban Institute's ggplot2 theme and tools,https://UrbanInstitute.github.io/urbnthemes/,,2018-03-09T13:49:18Z,2025-11-23T13:54:30Z 445 | ussc_draft,https://github.com/USStudiesCentre/ussc_draft,A repository for drafting USSC ggplot2 themes and D3.js templates.,,Other,2018-05-02T00:28:53Z,2018-05-09T03:30:51Z 446 | vagotheme,https://github.com/zerogetsamgow/vagotheme,ggplot2 themes and colour palettes that are Victorian Auditor-General's Office style guide compliant. ,,,2024-09-20T06:24:20Z,2024-12-03T02:55:59Z 447 | vapoRwave,https://github.com/moldach/vapoRwave,📼👾🕹Vaporwave themes and color palettes for ggplot2💾👨‍🎤📺,,Other,2019-02-10T00:12:39Z,2025-11-22T05:40:05Z 448 | visibly,https://github.com/m-clark/visibly,👓 Functions related to R visualizations,https://m-clark.github.io/visibly,Other,2018-06-10T15:52:32Z,2025-09-22T10:14:53Z 449 | visualizer,https://github.com/duttashi/visualizer,My experiments in data visualizations. Feel free to show your :heart: by giving a star :star:,,MIT License,2017-05-08T08:49:15Z,2025-10-06T09:21:28Z 450 | volcano-plot-streamlit-plotnine,https://github.com/Asimahafeez/volcano-plot-streamlit-plotnine,"A Streamlit web app for interactive Volcano Plot visualization of differential gene expression data, styled with plotnine (ggplot2 in Python). Upload RNA-seq results (log2FoldChange & p-value), adjust thresholds, label top genes, and download publication-ready plots and results.",,,2025-08-23T20:33:16Z,2025-08-23T21:13:08Z 451 | vthemes,https://github.com/Yu-Group/vthemes,An R package with modern themes for ggplot2 and R Markdown documents,https://yu-group.github.io/vthemes/,GNU General Public License v3.0,2022-03-05T01:09:58Z,2023-09-05T20:05:45Z 452 | waxtheme,https://github.com/Waxtiz/waxtheme,Personal ggplot2 theme and colors,,,2022-10-07T15:39:36Z,2022-10-24T09:36:15Z 453 | wbplot,https://github.com/lsms-worldbank/wbplot,Provides ggplot2 themes and color palettes aligned with the World Bank's visual identity 📈🌐,,Other,2024-07-27T20:20:24Z,2024-10-29T16:18:06Z 454 | wbplot,https://github.com/worldbank/wbplot,World Bank ggplot2 theme,,Other,2025-01-07T11:48:50Z,2025-11-14T14:20:53Z 455 | wwplot,https://github.com/lizardburns/wwplot,Wolverhamption Wanderers styled ggplot2 plots,,GNU General Public License v3.0,2022-01-04T14:38:17Z,2022-01-04T14:41:37Z 456 | xkcd,https://github.com/cran/xkcd,:exclamation: This is a read-only mirror of the CRAN R package repository. xkcd — Plotting 'ggplot2' Graphics in an 'XKCD' Style. Homepage: https://github.com/ToledoEM/xkcd Report bugs for this package: https://github.com/ToledoEM/xkcd/issues,,Other,2014-03-13T06:47:32Z,2025-11-19T19:29:39Z 457 | xkcd,https://github.com/ToledoEM/xkcd,"This R package facilitates hand-drawn XKCD-style graphics using ggplot2 through custom geometric objects for jittered lines, segments, circles, and figures that capture the XKCD aesthetic. Compatible with ggplot version 4.0.2. ",https://toledoem.github.io/xkcd/,Other,2025-10-23T22:13:11Z,2025-12-04T23:36:43Z 458 | zueritheme,https://github.com/StatistikStadtZuerich/zueritheme,zueritheme: Statistik Stadt Zurich ggplot2 theme ,https://statistikstadtzuerich.github.io/zueritheme/,Other,2022-11-24T14:07:30Z,2025-11-23T11:33:32Z 459 | --------------------------------------------------------------------------------