Guest post by Jonathan Sidi, Metrum Research Group
Last week the updated version of ggedit was presented in RStudio::conf2017. First, a BIG thank you to the whole RStudio team for a great conference and being so awesome to answer the insane amount of questions I had (sorry!). For a quick intro to the package see the previous post.
To install the package:
devtools::install_github("metrumresearchgroup/ggedit",subdir="ggedit")
Highlights of the updated version.
- verbose script handling during updating in the gagdet (see video below)
- verbose script output for updated layers and theme to parse and evaluate in console or editor
- colourpicker control for both single colours/fills and and palletes
- output for scale objects eg scale*grandient,scale*grandientn and scale*manual
- verbose script output for scales eg scale*grandient,scale*grandientn and scale*manual to parse and evaluate in console or editor
- input plot objects can have the data in the layer object and in the base object.
ggplot(data=iris,aes(x=Sepal.Width,y=Sepal.Length,colour=Species))+geom_point()
ggplot(data=iris,aes(x=Sepal.Width,y=Sepal.Length))+geom_point(aes(colour=Species))
ggplot()+geom_point(data=iris,aes(x=Sepal.Width,y=Sepal.Length,colour=Species))
- plot.theme(): S3 method for class ‘theme’
- visualizing theme objects in single output
- visual comparison of two themes objects in single output
- will be expanded upon in upcoming post
Continue reading “ggedit 0.0.2: a GUI for advanced editing of ggplot2 objects”