Ggedit

Interactively edit ggplot layer aesthetics and theme definitions
Alternatives To Ggedit
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Ggthemes1,2232561286 months ago24January 20, 202116R
Additional themes, scales, and geoms for ggplot2
Cowplot6312551819 months ago18December 30, 202027R
cowplot: Streamlined Plot Theme and Plot Annotations for ggplot2
Ggthemeassist330
24 years ago3August 13, 201613R
A RStudio addin for ggplot2 theme tweaking
Ggpomological305
2 years ago9cc0-1.0R
🍑 Pomological plot theme for ggplot2
Awesome R Dataviz280
a year ago1R
Curated resources about Data Visualization, Drawing & Publishing in R
Thematic232
a month ago1January 16, 202124otherR
Theme ggplot2, lattice, and base graphics based on a few simple settings.
Ggedit22313 years ago4June 02, 2020otherHTML
Interactively edit ggplot layer aesthetics and theme definitions
Mojave Dark Rstudio Theme199
3 years ago7mit
A Total-IDE Dark RStudio Theme inspired by Apple's dark aestheticcc.
Basetheme119
6 months ago4April 07, 20231R
Themes for base plotting system in R
Plotthemes.jl109
a year ago7otherJulia
Themes for the Julia plotting package Plots.jl
Alternatives To Ggedit
Select To Compare


Alternative Project Comparisons
Readme

CRAN_Status_Badge Project Status: Active - The project has reached a stable, usable state and is being actively developed. downloadsTravis-CI Build Status Coverage StatusCovrpage Summary

ggedit

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.

Online User Manual Gitbook

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

Installation

CRAN

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)

DEV

remotes::install_github("yonicd/ggedit")

Limitations

  • layers
    • non colour aesthetics of numeric inputs are not currently supported, e.g.: iris%>%ggplot(aes(x=Sepal.Length,y=Sepal.Width))+geom_point()+geom_text(aes(label=Species,size=Sepal.Length))
    • geom_text: family is not currently open to change
Popular Theme Projects
Popular Plot Projects
Popular User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
R
Theme
Plot
Rstudio
Gitbook
Ggplot2