diff --git a/.Rbuildignore b/.Rbuildignore index b536491..3346dd3 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -7,6 +7,12 @@ ^cran-comments\.md$ ^TODO$ ^ISSUE_TEMPLATE\.md$ -^vignettes/*\.png$ +^vignettes/mixing_plot_frameworks.Rmd$ +^vignettes/themes.Rmd$ +^vignettes/plot_grid.Rmd$ +^vignettes/drawing_with_on_plots.Rmd$ +^vignettes/aligning_plots.Rmd$ +^vignettes/shared_legends.Rmd$ ^revdep$ ^Meta$ +^CRAN-RELEASE$ diff --git a/docs/articles/aligning_plots.html b/docs/articles/aligning_plots.html index c17e2d3..825f8ac 100644 --- a/docs/articles/aligning_plots.html +++ b/docs/articles/aligning_plots.html @@ -95,7 +95,7 @@

Aligning plots

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/articles/drawing_with_on_plots.html b/docs/articles/drawing_with_on_plots.html index be1b2d2..3229917 100644 --- a/docs/articles/drawing_with_on_plots.html +++ b/docs/articles/drawing_with_on_plots.html @@ -95,7 +95,7 @@

Drawing with and on plots

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/articles/introduction.html b/docs/articles/introduction.html index cea194f..1c7332f 100644 --- a/docs/articles/introduction.html +++ b/docs/articles/introduction.html @@ -95,7 +95,7 @@

Introduction to cowplot

Claus O. Wilke

-

2019-07-09

+

2019-07-10

@@ -105,6 +105,7 @@

2019-07-09

The cowplot package is a simple add-on to ggplot. It provides various features that help with creating publication-quality figures, such as a set of themes, functions to align plots and arrange them into complex compound figures, and functions that make it easy to annotate plots and or mix plots with images. The package was originally written for internal use in my lab, to provide my students and postdocs with the tools to make high-quality figures for their publications. I have also used the package extensively in my book Fundamentals of Data Visualization. This introductory vignette provides a brief glance at the key features of the package.

+

For more complete documentation, read all vignettes and/or the reference documentation.

Themes

diff --git a/docs/articles/mixing_plot_frameworks.html b/docs/articles/mixing_plot_frameworks.html index aea8ca9..5da62ad 100644 --- a/docs/articles/mixing_plot_frameworks.html +++ b/docs/articles/mixing_plot_frameworks.html @@ -95,7 +95,7 @@

Mixing different plotting frameworks

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/articles/plot_grid.html b/docs/articles/plot_grid.html index af48fdf..09c17ae 100644 --- a/docs/articles/plot_grid.html +++ b/docs/articles/plot_grid.html @@ -95,7 +95,7 @@

Arranging plots in a grid

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/articles/shared_legends.html b/docs/articles/shared_legends.html index eb9eac8..7e2529e 100644 --- a/docs/articles/shared_legends.html +++ b/docs/articles/shared_legends.html @@ -95,7 +95,7 @@

Shared legends

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-2-1.png b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-2-1.png index ce49300..d223854 100644 Binary files a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-2-1.png and b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-2-1.png differ diff --git a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-3-1.png b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-3-1.png index c8d4c54..38f4c5d 100644 Binary files a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-3-1.png and b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-3-1.png differ diff --git a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-4-1.png b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-4-1.png index 9c2c949..cada1d2 100644 Binary files a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-4-1.png and b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-4-1.png differ diff --git a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-5-1.png b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-5-1.png index cec81b2..a2245bb 100644 Binary files a/docs/articles/shared_legends_files/figure-html/unnamed-chunk-5-1.png and b/docs/articles/shared_legends_files/figure-html/unnamed-chunk-5-1.png differ diff --git a/docs/articles/themes.html b/docs/articles/themes.html index 0706b80..3afb983 100644 --- a/docs/articles/themes.html +++ b/docs/articles/themes.html @@ -95,7 +95,7 @@

Themes

Claus O. Wilke

-

2019-07-09

+

2019-07-10

diff --git a/docs/reference/p3.pdf b/docs/reference/p3.pdf index 7055c6e..4ebab7a 100644 Binary files a/docs/reference/p3.pdf and b/docs/reference/p3.pdf differ diff --git a/docs/reference/p4.pdf b/docs/reference/p4.pdf index bdc808b..e1100e2 100644 Binary files a/docs/reference/p4.pdf and b/docs/reference/p4.pdf differ diff --git a/vignettes/introduction.Rmd b/vignettes/introduction.Rmd index 2d3eff9..021c6bc 100644 --- a/vignettes/introduction.Rmd +++ b/vignettes/introduction.Rmd @@ -16,6 +16,7 @@ knitr::opts_chunk$set( The cowplot package is a simple add-on to ggplot. It provides various features that help with creating publication-quality figures, such as a set of themes, functions to align plots and arrange them into complex compound figures, and functions that make it easy to annotate plots and or mix plots with images. The package was originally written for internal use in my lab, to provide my students and postdocs with the tools to make high-quality figures for their publications. I have also used the package extensively in my book [Fundamentals of Data Visualization.](https://www.amazon.com/gp/product/1492031089) This introductory vignette provides a brief glance at the key features of the package. +For more complete documentation, read [all vignettes](https://wilkelab.org/cowplot/articles/index.html) and/or the [reference documentation.](https://wilkelab.org/cowplot/reference/index.html) # Themes diff --git a/vignettes/mixing_plot_frameworks.Rmd b/vignettes/mixing_plot_frameworks.Rmd index 06a2a78..bdd10cd 100644 --- a/vignettes/mixing_plot_frameworks.Rmd +++ b/vignettes/mixing_plot_frameworks.Rmd @@ -3,7 +3,7 @@ title: "Mixing different plotting frameworks" author: "Claus O. Wilke" date: "`r Sys.Date()`" vignette: > - %\VignetteIndexEntry{ixing different plotting frameworks} + %\VignetteIndexEntry{Mixing different plotting frameworks} %\VignetteEngine{knitr::rmarkdown} %\usepackage[utf8]{inputenc} ---