From 735a82e29c7921721387e5b736c39122764f9b4a Mon Sep 17 00:00:00 2001 From: Claus Wilke Date: Wed, 3 Jun 2015 23:44:03 -0500 Subject: [PATCH] fix typo --- DESCRIPTION | 12 ++++++------ vignettes/introduction.Rmd | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index fd08c25..f131f58 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,12 +4,12 @@ Version: 0.3.1 Authors@R: c( person("Claus O.", "Wilke", role = c("aut", "cre"), email = "wilke@austin.utexas.edu"), person("Hadley", "Wickham", role = c("cph"), email = "h.wickham@gmail.com") ) -Description: Some helpful extensions and modifications to the 'ggplot2' library. - In particular, this package makes it easy to combine multiple 'ggplot2' plots - into one and label them with letters, e.g. A, B, C, etc., as is often required - for scientific publications. The package also provides a streamlined and clean - theme that is used in the Wilke lab, hence the package name, which stands for - Claus O. Wilke's plot library. +Description: Some helpful extensions and modifications to the 'ggplot2' + library. In particular, this package makes it easy to combine multiple + 'ggplot2' plots into one and label them with letters, e.g. A, B, C, etc., + as is often required for scientific publications. The package also provides + a streamlined and clean theme that is used in the Wilke lab, hence the + package name, which stands for Claus O. Wilke's plot library. URL: https://github.com/wilkelab/cowplot Depends: R (>= 3.0.0), diff --git a/vignettes/introduction.Rmd b/vignettes/introduction.Rmd index 1d8ec64..fafdffe 100644 --- a/vignettes/introduction.Rmd +++ b/vignettes/introduction.Rmd @@ -150,7 +150,7 @@ plot.iris <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point() + facet_grid(. ~ Species) + stat_smooth(method = "lm") + background_grid(major = 'y', minor = "none") + # add thin horizontal lines panel_border() # and a border around each panel -# plot.mpt and plot.diamonds were defined earlier +# plot.mpg and plot.diamonds were defined earlier ggdraw() + draw_plot(plot.iris, 0, .5, 1, .5) + draw_plot(plot.mpg, 0, 0, .5, .5) +