Recreate publication quality displays in R
DescribeDisplay
is an R package that provides a way to recreate ggobi graphics in R. The R package takes the R scripts describing the ggobi plots produced by the plugin and reproduces the plots in R. These can be saved as pdf or some other format for inclusion in papers. Most of the figures in the upcoming book on R and ggobi were produced this way.
From R, run:
install.packages("DescribeDisplay", dep=TRUE)
To save a plot from GGobi, click on Describe Display in the tools menu. If you can't see this menu, then you do not have the DescribeDisplay plugin installed. Please contact the GGobi mailing list for more help.
dd_load
to load the file into a R object:
library(DescribeDisplay) pd <- dd_load("~/desktop/my-plot.r")
?plot.dd
and ?ggplot.dd
for producing graphics.
plot(pd) ggplot(pd)