├── .Rbuildignore ├── .gitignore ├── LICENSE ├── README.Rmd ├── README.md ├── build-readme.R ├── ggplot2_themes_in_github.Rproj ├── ggplot2_themes_in_github.csv └── update.sh /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^.*\.Rproj$ 2 | ^\.Rproj\.user$ 3 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /build-readme.R: -------------------------------------------------------------------------------- 1 | rmarkdown::render( 2 | input = "README.Rmd", 3 | output_format = "md_document", 4 | output_file = "README.md" 5 | ) 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 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 6 | BicycleTheme2023,https://github.com/BicycleTx/BicycleTheme2023,Bicycle theme for ggplot2 objects,,,2023-03-17T15:46:02Z,2023-03-17T15:47:28Z 7 | 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 8 | Climate_Data_Visualization,https://github.com/jarred13/Climate_Data_Visualization,Visualizing historical temperatures and greenhouse gases,,,2022-04-08T02:21:27Z,2023-02-03T21:40:17Z 9 | 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,2021-02-11T11:29:50Z 10 | 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 11 | 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 12 | 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 13 | EasyBranding,https://github.com/ranchobiosciences/EasyBranding,R package for company colors and ggplot2 themes,,,2020-07-27T19:43:43Z,2021-04-09T00:22:04Z 14 | 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 15 | HODP-StyleGuide,https://github.com/HarvardOpenData/HODP-StyleGuide,ggplot2 Style Guide for HODP Graphics,,,2019-10-08T18:31:27Z,2019-11-10T05:58:47Z 16 | 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,2017-10-13T09:14:58Z 17 | INBOtheme,https://github.com/RmeanyMAN/INBOtheme,A collection of ggplot2 themes,,,2014-11-21T21:41:02Z,2016-12-07T08:28:08Z 18 | 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,2021-12-20T02:51:59Z 19 | Implementing_k_NN_and_Data_Visualization_with_ggplot2,https://github.com/cariappa93/Implementing_k_NN_and_Data_Visualization_with_ggplot2,[Mini Project]: Implementing Lazy Learning k-NN on IRIS dataset and EDA using ggplot2 - R style visuals on Jupyter Notebook,,,2023-01-28T21:15:39Z,2023-03-03T00:04:57Z 20 | 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 21 | 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,2023-05-11T21:41:23Z 22 | 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 23 | 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 24 | MKHthemes,https://github.com/MatthewHeun/MKHthemes,Themes for ggplot2 graphics,,Other,2018-07-08T00:39:14Z,2023-05-09T00:43:25Z 25 | 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,2023-07-06T14:45:16Z 26 | 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 27 | 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 28 | PiePieGGPlotter,https://github.com/Hedaozi/PiePieGGPlotter,(Developing) A desktop application of adjusting ggplot2 theme and tamp theme.,,,2021-07-30T14:09:25Z,2022-09-19T08:56:46Z 29 | 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 30 | QSPthemes,https://github.com/dougtommet/QSPthemes,Quantitative Sciences Program ggplot2 themes,,Other,2020-02-05T18:35:34Z,2020-02-05T20:49:08Z 31 | R-Bootcamp,https://github.com/atse0612/R-Bootcamp,,,,2016-11-16T16:48:45Z,2017-03-08T16:09:56Z 32 | 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 33 | R_theme,https://github.com/guoxueyu/R_theme,Summary of common themes in ggplot2,,,2020-11-06T12:00:30Z,2020-11-06T13:15:33Z 34 | 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 35 | Rokemon,https://github.com/schochastics/Rokemon,Pokemon themed R package ,,Other,2017-11-28T11:08:13Z,2023-03-03T10:07:25Z 36 | 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,2023-07-11T18:18:02Z 37 | 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 38 | 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,2023-07-08T03:28:18Z 39 | SethsTheme,https://github.com/sethbilliau/SethsTheme,R package with Seth's custom ggplot2 theme,,,2021-06-17T03:51:55Z,2021-06-17T15:44:38Z 40 | 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,2023-06-12T08:39:42Z 41 | 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 42 | Tidy-Tuesday,https://github.com/patcasrom/Tidy-Tuesday,"A weekly project that builds off #makeovermonday style projects but aimed at the R ecosystem. An emphasis will be placed on understanding how to summarize and arrange data to make meaningful charts with ggplot2, tidyr, dplyr, and other tools in the tidyverse ecosystem.",,,2018-04-23T16:30:23Z,2018-04-23T16:51:33Z 43 | 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,2023-01-20T10:36:20Z 44 | aag-ggeefive,https://github.com/g5search/aag-ggeefive,ggplot2 theme for G5,,,2019-06-12T22:02:20Z,2023-01-28T00:01:26Z 45 | abmi.themes,https://github.com/mabecker89/abmi.themes,Making ABMI-themed ggplot2 graphics,,,2020-05-03T19:18:10Z,2022-09-02T03:11:24Z 46 | 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 47 | 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 48 | alaplot,https://github.com/matildastevenson/alaplot,ggplot2 theme for Atlas of Living Australia charts,,,2021-01-06T07:02:00Z,2021-04-09T08:25:27Z 49 | alatheme,https://github.com/AtlasOfLivingAustralia/alatheme,"R package storing ALA themes for plots (ggplot2), slides (xaringan) and web apps (shiny/bslib)",,MIT License,2021-02-23T00:50:28Z,2021-09-03T08:48:00Z 50 | 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 51 | architekter,https://github.com/ThinkR-open/architekter,A tool to extract a {ggplot2} theme from a Figma file,,Other,2022-02-25T09:39:24Z,2022-03-31T17:20:57Z 52 | artyfarty,https://github.com/datarootsio/artyfarty,ggplot2 theme + palette presets,,Other,2016-10-04T15:14:13Z,2022-02-28T18:23:26Z 53 | 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 54 | awesome-ggplot2,https://github.com/erikgahner/awesome-ggplot2,"A curated list of awesome ggplot2 tutorials, packages etc.",,,2020-01-31T15:36:58Z,2023-07-19T06:16:01Z 55 | 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,2023-07-19T23:42:00Z 56 | 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 57 | bestcolorgraphs,https://github.com/CocoPal/bestcolorgraphs,Best color themes for ggplot2,,Other,2020-12-04T20:51:45Z,2020-12-04T21:12:22Z 58 | 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 59 | 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,2023-06-23T12:40:53Z 60 | bw166ggtheme,https://github.com/bw166/bw166ggtheme,ggplot2 theme for bw166,,,2022-07-09T23:04:52Z,2022-07-18T19:55:35Z 61 | camptheme,https://github.com/campbead/camptheme,theme for ggplot2,,Other,2021-09-09T17:57:43Z,2021-11-17T00:59:35Z 62 | 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,2023-02-15T08:52:59Z 63 | 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 64 | 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,2023-01-31T16:42:22Z 65 | 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 66 | 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 67 | coffeegeeks,https://github.com/RMHogervorst/coffeegeeks,#rstatsforcoffeegeeks,,MIT License,2017-08-13T16:01:48Z,2017-09-16T15:00:37Z 68 | comotheme,https://github.com/como-ph/comotheme,CoMo Consortium Themes for R,,Other,2020-05-25T19:45:59Z,2020-06-19T13:32:04Z 69 | cowplot,https://github.com/wilkelab/cowplot,cowplot: Streamlined Plot Theme and Plot Annotations for ggplot2,https://wilkelab.org/cowplot/,,2014-10-05T16:34:22Z,2023-07-21T21:49:01Z 70 | 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,2020-12-31T11:38:13Z 71 | cplthemes,https://github.com/californiapolicylab/cplthemes,California Policy Lab's ggplot2 theme,,,2021-07-09T20:56:54Z,2021-08-12T16:10:36Z 72 | crthemes,https://github.com/christyray/crthemes,A Standardized ggplot2 Theme for Visualizations,,Other,2021-12-11T04:28:44Z,2023-01-24T23:50:17Z 73 | 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,2019-01-25T19:52:04Z 74 | customThemes,https://github.com/michaellevy/customThemes,My themes for ggplot2,,Other,2016-12-13T19:36:57Z,2016-12-13T19:38:22Z 75 | 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,2022-10-19T14:20:57Z 76 | dash_theme,https://github.com/DashWieland/dash_theme,My personal theme for ggplot2,,,2019-04-03T17:02:02Z,2019-05-02T12:08:20Z 77 | datademon,https://github.com/medewitt/datademon,,,Other,2017-10-04T13:04:32Z,2019-01-16T19:42:01Z 78 | datavizExtras,https://github.com/JanLMoffett/datavizExtras,"Colors, Themes and Functions to use with ggplot2 for R.",,Apache License 2.0,2022-04-27T13:09:05Z,2022-05-16T18:51:37Z 79 | 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 80 | ddthemes,https://github.com/markjrieke/ddthemes,Color Palette & Theme Extension for ggplot2,,MIT License,2021-09-21T20:04:59Z,2021-09-22T13:23:08Z 81 | 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,2022-06-24T18:53:18Z 82 | 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 83 | 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,2022-07-28T01:53:38Z 84 | dqnTheme,https://github.com/d-qn/dqnTheme,theme for ggplot2,,,2018-07-30T12:55:33Z,2021-11-08T08:18:03Z 85 | 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 86 | 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 87 | 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 88 | eclthemes,https://github.com/eclarke/eclthemes,Useful theme(s) for ggplot2,,,2015-10-01T15:06:36Z,2015-10-01T15:07:26Z 89 | ectrlplot,https://github.com/euctrl-pru/ectrlplot,R 📦 to create ggplot2 graphics styled by the PRU team,http://ectrlplot.ansperformance.eu/,,2019-02-18T13:22:38Z,2021-12-01T16:01:30Z 90 | 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 91 | 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,2023-03-10T01:28:07Z 92 | 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,2022-06-29T17:27:13Z 93 | 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 94 | ewenthemes,https://github.com/ewenme/ewenthemes,ggplot2 chart aesthetics and helpers,,Other,2019-05-27T20:03:15Z,2023-03-07T00:33:55Z 95 | 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 96 | 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,2023-06-04T18:57:40Z 97 | 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 98 | fiegeVizr,https://github.com/quickcoffee/fiegeVizr,internal library for FIEGE ggplot2 theme,,,2020-07-29T13:04:45Z,2020-07-31T12:41:43Z 99 | fiero,https://github.com/jvieroe/fiero,customized ggplot2 themes,,,2021-10-30T14:10:53Z,2021-10-30T14:13:59Z 100 | firatheme,https://github.com/vankesteren/firatheme,a ggplot2 theme with fira font,,Other,2018-03-14T22:45:05Z,2023-06-11T21:04:05Z 101 | fmeireles,https://github.com/meirelesff/fmeireles,My personal R package,,,2016-09-28T21:45:25Z,2017-02-17T12:04:06Z 102 | 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 103 | 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 104 | fontMPlus,https://github.com/bhaskarvk/fontMPlus,ggplot2 themes based on M+ fonts,https://bhaskarvk.github.io/fontMPlus/,Other,2017-02-26T16:06:10Z,2023-01-28T06:13:57Z 105 | 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 106 | fwthemes,https://github.com/FlowWest/fwthemes,ggplot2 themes for FlowWest,,,2020-03-25T17:26:03Z,2020-03-25T17:31:26Z 107 | ggCHE,https://github.com/IndianaCHE/ggCHE,Indiana CHE Theme for ggplot2,,Other,2017-12-20T16:48:19Z,2017-12-20T16:48:42Z 108 | 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 109 | ggNorthwestern,https://github.com/chang/ggNorthwestern,A ggplot2 theme with Northwestern colors.,,,2017-10-10T02:27:44Z,2017-10-10T08:15:11Z 110 | 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 111 | 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 112 | 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 113 | 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 114 | ggbeeswarm2,https://github.com/csdaw/ggbeeswarm2,Column scatter / beeswarm-style plots in ggplot2,,,2020-07-18T17:01:57Z,2023-04-22T12:56:15Z 115 | ggcertara,https://github.com/certara/ggcertara,A ggplot2 theme for Certara CSC-iDD,,,2019-02-05T19:40:49Z,2022-06-19T11:46:53Z 116 | 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 117 | ggcolormeter,https://github.com/yjunechoe/ggcolormeter,A ggplot2 color/fill legend guide extension in the style of a dashboard meter,,Other,2022-06-13T08:46:02Z,2023-06-16T17:42:09Z 118 | ggconf,https://github.com/caprice-j/ggconf,Concise appearance modification of ggplot2 ,,,2017-08-25T03:09:05Z,2020-02-12T10:07:30Z 119 | ggcorpthemer,https://github.com/mjfrigaard/ggcorpthemer,Creating a corporate theme for ggplot2,,,2022-02-07T17:49:49Z,2022-02-07T17:49:49Z 120 | ggdark,https://github.com/nsgrantham/ggdark,Dark mode for ggplot2 themes,,Other,2018-09-18T15:35:43Z,2023-07-07T06:52:48Z 121 | 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 122 | ggdc,https://github.com/datacamp/ggdc,Datacamp Themes for ggplot2.,,MIT License,2017-12-28T22:58:41Z,2023-05-31T01:53:59Z 123 | ggdecor,https://github.com/dmarcelinobr/ggdecor,Improve your data visualisation with ggplot2 in 1 minute,,,2019-04-03T10:18:39Z,2022-08-14T23:36:16Z 124 | 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 125 | ggduncan,https://github.com/duncan-clark/ggduncan,Personal ggplot2 theme,,,2019-10-09T20:46:24Z,2020-05-02T21:20:00Z 126 | 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,2020-06-03T09:19:55Z 127 | ggexpanse,https://github.com/hrbrmstr/ggexpanse,🚀Theme Elements Based On 'The Expanse',,Other,2019-08-19T12:24:04Z,2022-01-31T22:08:32Z 128 | 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 129 | 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 130 | 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,2022-10-13T08:30:41Z 131 | 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 132 | 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 133 | ggkanlev,https://github.com/levikanwischer/ggkanlev,Personal themes for ggplot2,,,2020-12-30T00:43:17Z,2021-07-14T21:07:34Z 134 | 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,2022-06-13T13:51:53Z 135 | 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,2023-06-02T17:21:31Z 136 | 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 137 | ggmin,https://github.com/sjessa/ggmin,"Clean, minimalist theme for ggplot2 (+ a variant designed for Powerpoint)",,,2017-06-29T20:57:41Z,2018-04-10T09:33:40Z 138 | 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 139 | ggmjs,https://github.com/datahub/ggmjs,A ggplot2 theme for the Milwaukee Journal Sentinel,,,2017-09-15T20:18:53Z,2022-07-17T01:35:12Z 140 | ggmnmlab,https://github.com/zachbrehm/ggmnmlab,R package for the McCall Lab ggplot2 color palette and theme.,https://github.com/zachbrehm/ggmnmlab,Other,2021-03-06T06:35:16Z,2021-03-23T18:24:31Z 141 | ggnba,https://github.com/ariespirgel/ggnba,"ggplot2 nba themes, scales, and geoms",,,2017-04-28T18:22:11Z,2017-04-28T18:24:18Z 142 | ggnuplot,https://github.com/hriebl/ggnuplot,Make your ggplots look like gnuplots,,Other,2020-02-08T00:01:24Z,2022-06-24T11:38:21Z 143 | ggoecd,https://github.com/jclopeztavera/ggoecd,ggplot2 extension with OECD-esque geoms and themes,,MIT License,2017-12-01T18:31:03Z,2018-11-17T01:52:51Z 144 | ggpkt,https://github.com/purplezippo/ggpkt,themes and graphs based on ggplot2,,,2018-11-15T02:03:28Z,2019-04-02T14:27:29Z 145 | 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 146 | ggplot2,https://github.com/dracula/ggplot2,🧛🏻‍♂️ Dark theme for ggplot2 and R palette,https://draculatheme.com/ggplot2,MIT License,2021-11-28T00:24:17Z,2023-01-14T02:02:06Z 147 | 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 148 | 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 149 | 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,2023-07-14T06:44:20Z 150 | 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,2023-07-20T15:50:21Z 151 | 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 152 | ggplot2-themes,https://github.com/smc-ribes/ggplot2-themes,custom ggplot2 themes,,MIT License,2015-12-04T21:16:32Z,2015-12-04T21:16:32Z 153 | 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 154 | ggplot2_stuff,https://github.com/briandconnelly/ggplot2_stuff,"Themes, scripts, etc. for using ggplot2",,,2013-09-17T18:01:32Z,2014-04-23T15:15:48Z 155 | ggplot2_theme,https://github.com/skelly001/ggplot2_theme,Publication theme for ggplot2,,,2023-04-21T23:40:34Z,2023-04-21T23:40:35Z 156 | 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 157 | ggplot2bdc,https://github.com/briandconnelly/ggplot2bdc,Collection of themes and tools for modifying ggplot2 plots,,Other,2014-04-23T15:10:19Z,2022-04-14T23:19:09Z 158 | 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,2019-03-03T23:24:40Z 159 | 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 160 | 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,2023-07-20T11:45:48Z 161 | ggplot_theme_publication,https://github.com/alan-feng/ggplot_theme_publication,Custom ggplot themes for research publications,,,2021-11-17T01:15:32Z,2023-01-31T19:17:53Z 162 | ggplot_themes,https://github.com/stomperusa/ggplot_themes,examples of themes available for ggplot2,,,2020-06-27T21:10:45Z,2020-06-28T18:04:29Z 163 | 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,2021-10-14T14:09:59Z 164 | 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,2023-05-22T17:21:30Z 165 | ggptt,https://github.com/pttry/ggptt,A collection of ggplot2 themes and functions for use in PTT,,,2018-07-25T11:14:11Z,2023-04-08T19:21:21Z 166 | ggpubs,https://github.com/condwanaland/ggpubs,Publication ready themes for ggplot2,,,2017-02-28T00:25:27Z,2018-04-10T08:11:46Z 167 | 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 168 | 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,2023-07-21T02:14:42Z 169 | 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,2023-03-08T15:32:41Z 170 | 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,2023-03-28T21:24:47Z 171 | 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 172 | ggsidekick,https://github.com/seananderson/ggsidekick,Helper function(s) for ggplot2. [Only theme_sleek() for now.],,,2017-02-22T16:44:16Z,2023-06-19T05:57:41Z 173 | ggspc,https://github.com/brownag/ggspc,"[experimental] Custom 'ggplot2' 'Stat', 'Geom', and 'theme' definitions for 'aqp' 'SoilProfileCollection' objects",,GNU General Public License v3.0,2023-02-02T01:14:50Z,2023-02-02T16:55:17Z 174 | 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 175 | 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 176 | 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 177 | 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 178 | 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 179 | ggtech,https://github.com/ricardo-bion/ggtech,"ggplot2 tech themes, scales, and geoms",https://twitter.com/ricardobion,,2015-04-02T19:00:39Z,2023-07-15T09:25:31Z 180 | ggtheme,https://github.com/jschoeley/ggtheme,Minimal Theme for ggplot2 with Additional Options,,,2015-03-14T23:31:30Z,2015-03-14T23:45:37Z 181 | ggtheme,https://github.com/sinarueeger/ggtheme,ggplot2 themes for presentation (poster + beamer),,,2019-06-06T08:41:04Z,2019-06-06T13:45:26Z 182 | 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 183 | ggthemeassist,https://github.com/calligross/ggthemeassist,A RStudio addin for ggplot2 theme tweaking ,,,2016-02-20T09:57:16Z,2023-07-12T19:14:47Z 184 | ggthemepark,https://github.com/NickGlaettli/ggthemepark,Additional themes for ggplot2,,,2022-01-16T16:49:46Z,2022-01-25T22:09:54Z 185 | ggthemes,https://github.com/jrnold/ggthemes,"Additional themes, scales, and geoms for ggplot2",https://jrnold.github.io/ggthemes,,2012-09-07T00:00:07Z,2023-07-13T05:43:02Z 186 | 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://github.com/jrnold/ggthemes Report bugs for this package: https://github.com/jrnold/ggthemes",,,2014-03-13T04:52:17Z,2021-01-29T10:41:20Z 187 | ggthemr,https://github.com/Mikata-Project/ggthemr,Themes for ggplot2.,,,2013-10-06T18:50:41Z,2023-07-16T09:42:10Z 188 | ggtufte,https://github.com/jrnold/ggtufte,Geoms and themes for ggplot2 inspired by Tufte,,Other,2018-06-04T17:55:57Z,2019-11-16T02:35:43Z 189 | gguniversity,https://github.com/dougaltoms/gguniversity,ggplot2 themes based on UK university branding,,,2022-10-01T16:40:06Z,2022-10-07T16:53:43Z 190 | ggvisuals,https://github.com/mtrauernicht/ggvisuals,Beautiful and minimalistic templates for ggplot2 themes,,,2021-10-20T14:49:36Z,2021-10-21T07:34:24Z 191 | ggwb,https://github.com/EBukin/ggwb,ggplot2 theme with the WB colours,,Other,2019-01-31T10:14:19Z,2019-01-31T12:26:37Z 192 | 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,2023-04-13T21:18:18Z 193 | 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,2023-04-20T15:35:23Z 194 | 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,2023-06-22T00:21:40Z 195 | 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,2023-04-14T18:17:47Z 196 | hjplottools,https://github.com/alphabetac/hjplottools,A theme for use with ggplot2,,Other,2020-07-25T13:30:06Z,2021-10-06T13:15:59Z 197 | hrbragg,https://github.com/hrbrmstr/hrbragg,"Typography-centric Themes, Theme Components, and Utilities for 'ggplot2' and 'ragg'.",,Other,2021-02-16T06:09:01Z,2023-06-05T22:06:26Z 198 | hrbrthemes,https://github.com/hrbrmstr/hrbrthemes,":lock_with_ink_pen: Opinionated, typographic-centric ggplot2 themes and theme components",https://cinc.rud.is/web/packages/hrbrthemes/,Other,2017-02-11T17:03:01Z,2023-07-23T15:58:08Z 199 | 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'. Homepage: http://github.com/hrbrmstr/hrbrthemes Report bugs for this package: https://github.com/hrbrmstr/hrbrthemes/issues",,Other,2017-02-26T05:06:09Z,2020-03-07T09:15:31Z 200 | 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 201 | imprint,https://github.com/hrbrmstr/imprint,Create Customized 'ggplot2' and 'R Markdown' Themes for Your Organization,,Other,2018-05-25T00:11:45Z,2022-03-31T17:59:38Z 202 | inlegend,https://github.com/MilesMcBain/inlegend,Styling for inset ggplot2 map legends,,Other,2020-08-13T05:31:24Z,2022-04-05T12:14:21Z 203 | jbplot,https://github.com/jabenninghoff/jbplot,My personal collection of ggplot2 themes,https://jabenninghoff.github.io/jbplot/,MIT License,2022-01-09T20:59:40Z,2022-06-22T02:21:45Z 204 | 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.github.io/jcolors/ Report bugs for this package: https://github.com/jaredhuling/jcolors/issues",,,2017-07-07T10:21:17Z,2020-01-27T23:17:59Z 205 | 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 206 | jptheme,https://github.com/MattCowgill/jptheme,ggplot2 theme for Apricitas blog,,Other,2021-12-08T02:27:54Z,2023-03-18T15:28:42Z 207 | 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 208 | jtheme,https://github.com/jeremieboudreault/jtheme,[Archived] R package that enhances ggplot2 theme and functions,,,2022-04-21T20:17:18Z,2023-05-03T12:07:45Z 209 | kaplot,https://github.com/mkapur/kaplot,mostly custom ggplot2 themes,,,2020-04-30T21:55:25Z,2020-09-15T21:45:58Z 210 | kaththemes,https://github.com/katherine-taylor/kaththemes,Custom ggplot2 themes for Katherine Taylor,,Other,2021-08-23T02:22:57Z,2021-08-23T02:29:26Z 211 | 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,2022-10-26T08:55:47Z 212 | 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 213 | lato,https://github.com/briandconnelly/lato,Minimal and flexible 'ggplot2' themes using 'Lato' Typeface,,Other,2017-11-18T00:31:14Z,2023-01-19T21:05:24Z 214 | lazerhawk,https://github.com/m-clark/lazerhawk,An R package of miscellaneous functions.,,Other,2015-11-16T00:37:06Z,2022-01-06T09:41:42Z 215 | 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 216 | makeover_monday,https://github.com/mrafa3/makeover_monday,Repo for Makeover Monday exercises,,,2020-09-21T11:32:54Z,2021-01-27T20:51:58Z 217 | mdthemes,https://github.com/thomas-neitmann/mdthemes,Markdown Themes for 'ggplot2',,Other,2020-04-03T08:27:50Z,2023-04-28T16:25:37Z 218 | 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 219 | 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,2023-06-23T17:28:44Z 220 | modthemes,https://github.com/marcboschmatas/modthemes,"A series of resources for ggplot2, including modernist-inspired themes, colour palettes and other styles. Very much Work in Progress",,GNU General Public License v3.0,2022-11-14T15:56:56Z,2022-11-18T18:15:16Z 221 | 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 222 | 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 223 | 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 224 | 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,2023-04-16T22:51:12Z 225 | msthemes,https://github.com/mschnetzer/msthemes,Custom ggplot2 theme,,,2018-06-28T12:29:36Z,2022-12-08T12:47:39Z 226 | 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 227 | 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 228 | my_ggthemes,https://github.com/dhammarstrom/my_ggthemes,Themes for ggplot2,,,2015-05-05T11:16:37Z,2015-05-05T11:55:18Z 229 | 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 230 | 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 231 | 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,2023-04-19T14:19:18Z 232 | 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 233 | nmthemes,https://github.com/maehler/nmthemes,Some additional themes for ggplot2,,MIT License,2017-11-08T15:47:24Z,2020-03-13T14:19:05Z 234 | 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 235 | nrsplot,https://github.com/DataScienceScotland/nrsplot,R package that helps create ggplot2 charts in the style used by National Records of Scotland,https://datasciencescotland.github.io/nrsplot/,,2019-03-12T09:28:22Z,2021-03-05T10:43:37Z 236 | oiplot,https://github.com/OpportunityInsights/oiplot,R package that helps create and export ggplot2 charts in the style used by the Opportunity Insights team.,,MIT License,2023-07-13T19:33:38Z,2023-07-13T19:54:14Z 237 | 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,2023-07-05T17:14:29Z 238 | onroerenderfgoedtheme,https://github.com/OnroerendErfgoed/onroerenderfgoedtheme,ggplot2 theme ,,,2016-04-04T14:47:06Z,2016-11-30T15:10:06Z 239 | 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 240 | 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 241 | 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 242 | 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,2023-05-30T10:14:37Z 243 | 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 244 | plotutils,https://github.com/L-Groeninger/plotutils,Setting a custom ggplot2 theme,,Other,2021-10-04T13:35:51Z,2021-10-04T15:41:20Z 245 | 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,2023-05-05T16:15:21Z 246 | 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 247 | 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,2023-05-25T21:27:01Z 248 | 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,2023-04-27T15:56:18Z 249 | ratlas,https://github.com/atlas-aai/ratlas,Custom graphics and report generation for @atlas-aai,https://ratlas.netlify.app,,2018-09-26T16:14:04Z,2023-03-11T12:21:00Z 250 | 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 251 | 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,2023-06-21T02:40:43Z 252 | 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,2023-01-16T14:22:46Z 253 | 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 254 | 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 255 | 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 256 | 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 257 | 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,2022-12-08T02:37:45Z 258 | 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 259 | 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 260 | 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 261 | 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,2023-06-08T08:33:12Z 262 | schemeR,https://github.com/schuyler-smith/schemeR,my ggplot2 theme,,,2023-04-11T15:23:49Z,2023-04-11T16:27:32Z 263 | sciplots,https://github.com/garen-anderson/sciplots,Themes for ggplot2,,Other,2021-11-16T18:55:48Z,2021-11-16T20:08:04Z 264 | severance,https://github.com/ivelasq/severance,The severance package contains color palettes inspired by the show Severance,,Other,2022-09-09T04:56:04Z,2023-02-07T15:57:56Z 265 | 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,2023-03-28T10:35:16Z 266 | sgplot,https://github.com/DataScienceScotland/sgplot,Standard Graphic Styles for use in Scottish Government,https://datasciencescotland.github.io/sgplot/,Other,2023-01-19T15:51:06Z,2023-06-12T10:30:25Z 267 | sgthemes,https://github.com/statgarten/sgthemes,Additional Statgarten style themes for ggplot2,,,2023-01-02T06:35:40Z,2023-06-08T00:50:10Z 268 | 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 269 | ssvTracks,https://github.com/jrboyd/ssvTracks,generate nice looking track style plots using seqsetvis (data.table and ggplot2),,,2022-07-12T19:09:05Z,2023-03-14T13:45:44Z 270 | 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,2023-05-27T08:50:17Z 271 | 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 272 | stevethemes,https://github.com/svmiller/stevethemes,Steve's {ggplot2} themes and related theme elements,http://svmiller.com/stevethemes,Other,2023-01-22T14:52:33Z,2023-04-30T21:39:47Z 273 | 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 274 | 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 275 | tadaathemes,https://github.com/tadaadata/tadaathemes,Yet another ggplot2 theme package,https://tadaadata.github.io/tadaathemes,MIT License,2020-05-08T00:02:44Z,2020-11-09T16:52:35Z 276 | 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,2023-07-08T13:07:18Z 277 | 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 278 | 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,2021-02-18T21:42:14Z 279 | 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 280 | 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,2023-04-13T16:43:31Z 281 | 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#readme ",,Other,2021-01-29T18:03:36Z,2021-10-14T18:50:51Z 282 | 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,2023-03-30T05:46:30Z 283 | themeODA,https://github.com/cu-boulder/themeODA,A ggplot2 theme with CU Boulder branding,,,2020-11-02T18:39:48Z,2020-11-02T20:07:50Z 284 | themeTom,https://github.com/thmcmahon/themeTom,Tom's default ggplot2 theme,,,2017-07-18T01:13:54Z,2017-07-18T01:14:14Z 285 | 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 286 | theme_ebt,https://github.com/BurkyVIE/theme_ebt,A ggplot2 theme ,,,2019-04-19T06:06:05Z,2021-03-03T18:16:50Z 287 | theme_fivethirtyeight,https://github.com/alex23lemm/theme_fivethirtyeight,ggplot2 theme that mimics themes of fivethirtyeight.com plots,,,2014-07-29T08:47:00Z,2023-05-30T21:55:43Z 288 | 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 289 | 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 290 | 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 291 | themedenv,https://github.com/eldenvo/themedenv,theme_denv for ggplot2 theming,,,2018-02-18T17:23:05Z,2018-03-13T18:38:08Z 292 | themedubois,https://github.com/brevinf1/themedubois,Simple ggplot2 Theme to Replicate W.E.B. Du Bois' Data Visuzliazations,,Other,2022-03-29T03:23:21Z,2022-02-10T18:55:40Z 293 | themejj,https://github.com/JanaJarecki/themejj,theme for ggplot2,,,2016-12-21T09:26:57Z,2020-09-02T09:29:56Z 294 | themepubr,https://github.com/Carolusian/themepubr,A ggplot2 theme,,,2017-10-24T15:11:39Z,2017-10-24T15:12:03Z 295 | 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 296 | 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,2023-05-29T19:57:10Z 297 | tidy_tuesday,https://github.com/mrafa3/tidy_tuesday,Repo for Tidy Tuesday exercises,,,2020-09-21T19:25:02Z,2022-12-17T04:23:32Z 298 | 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 299 | 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,2023-06-26T03:19:36Z 300 | 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,2022-11-18T03:52:04Z 301 | 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 302 | 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 303 | 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 304 | 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 305 | unhcrthemes,https://github.com/vidonne/unhcrthemes,UNHCR branded theme for ggplot2 and data visualization colour palettes,https://vidonne.github.io/unhcrthemes/,Other,2021-01-28T13:38:55Z,2023-02-24T09:39:30Z 306 | urbnthemes,https://github.com/UrbanInstitute/urbnthemes,Urban Institute's ggplot2 theme and tools,https://UrbanInstitute.github.io/urbnthemes/,,2018-03-09T13:49:18Z,2023-05-05T05:17:11Z 307 | 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 308 | vapoRwave,https://github.com/moldach/vapoRwave,📼👾🕹Vaporwave themes and color palettes for ggplot2💾👨‍🎤📺,,Other,2019-02-10T00:12:39Z,2023-06-30T15:18:43Z 309 | visibly,https://github.com/m-clark/visibly,👓 Functions related to R visualizations,https://m-clark.github.io/visibly,Other,2018-06-10T15:52:32Z,2023-01-19T01:45:28Z 310 | 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,2021-04-27T07:13:40Z 311 | 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-01-10T19:30:56Z 312 | waxtheme,https://github.com/Waxtiz/waxtheme,Personal ggplot2 theme and colors,,,2022-10-07T15:39:36Z,2022-10-24T09:36:15Z 313 | wfpthemes,https://github.com/WFP-VAM/wfpthemes,WFP branded theme for ggplot2 and data visualization colour palettes,,,2023-04-26T15:52:08Z,2023-05-27T14:47:49Z 314 | 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 315 | 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:  ,,,2014-03-13T06:47:32Z,2022-05-02T16:07:34Z 316 | zewplot,https://github.com/benediktstelter/zewplot,"This package implements 'theme_zew', a ggplot2 theme which can be used to create plots in uniform style. Additionally, the package includes color palette functions in corporate colors. ",,,2023-04-28T15:53:40Z,2023-07-11T20:13:32Z 317 | zueritheme,https://github.com/StatistikStadtZuerich/zueritheme,zueritheme: Statistik Stadt Zurich ggplot2 theme ,,"BSD 3-Clause ""New"" or ""Revised"" License",2022-11-24T14:07:30Z,2023-03-01T09:42:23Z 318 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | Rscript build-readme.R 3 | --------------------------------------------------------------------------------