Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ggthemes | 1,223 | 256 | 128 | 6 months ago | 24 | January 20, 2021 | 16 | R | ||
Additional themes, scales, and geoms for ggplot2 | ||||||||||
Cowplot | 631 | 255 | 181 | 9 months ago | 18 | December 30, 2020 | 27 | R | ||
cowplot: Streamlined Plot Theme and Plot Annotations for ggplot2 | ||||||||||
Ggthemeassist | 330 | 2 | 4 years ago | 3 | August 13, 2016 | 13 | R | |||
A RStudio addin for ggplot2 theme tweaking | ||||||||||
Ggpomological | 305 | 2 years ago | 9 | cc0-1.0 | R | |||||
🍑 Pomological plot theme for ggplot2 | ||||||||||
Awesome R Dataviz | 280 | a year ago | 1 | R | ||||||
Curated resources about Data Visualization, Drawing & Publishing in R | ||||||||||
Thematic | 232 | a month ago | 1 | January 16, 2021 | 24 | other | R | |||
Theme ggplot2, lattice, and base graphics based on a few simple settings. | ||||||||||
Ggedit | 223 | 1 | 3 years ago | 4 | June 02, 2020 | other | HTML | |||
Interactively edit ggplot layer aesthetics and theme definitions | ||||||||||
Mojave Dark Rstudio Theme | 199 | 3 years ago | 7 | mit | ||||||
A Total-IDE Dark RStudio Theme inspired by Apple's dark aestheticcc. | ||||||||||
Basetheme | 119 | 6 months ago | 4 | April 07, 2023 | 1 | R | ||||
Themes for base plotting system in R | ||||||||||
Plotthemes.jl | 109 | a year ago | 7 | other | Julia | |||||
Themes for the Julia plotting package Plots.jl |
ggplot2 has become the standard of plotting in R for many users. New users, however, may find the learning curve steep at first, and more experienced users may find it challenging to keep track of all the options (especially in the theme!).
ggedit is a package that helps users bridge the gap between making a plot and getting all of those pesky plot aesthetics just right, all while keeping everything portable for further research and collaboration.
ggedit is powered by a Shiny gadget where the user inputs a ggplot plot object or a list of ggplot objects. You can run ggedit directly from the console or from the Addin menu within RStudio.
A gitbook is maintained as the user manual for the package, you can access it here:
https://yonicd.github.io/ggedit/
Short clip from rstudio::conf 2017 (13:35-19:35)
Lightning Talks - Users - RStudio
install.packages('ggedit')
For a quick example, run the following:
library('ggedit')
library(ggplot2)
p <- ggplot(mtcars, aes(x = hp, y = wt)) + geom_point() + geom_smooth()
p2 <- ggedit(p)
names(p2) # will show you which objects are available.
plot(p2) # shows the updated plot (it is available in the first element of p2)
remotes::install_github("yonicd/ggedit")
iris%>%ggplot(aes(x=Sepal.Length,y=Sepal.Width))+geom_point()+geom_text(aes(label=Species,size=Sepal.Length))