knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README/",
  cache.path = "README/cache/",
  cache = TRUE,
  autodep=TRUE,
  cache.rebuild = TRUE
)

Lemon --- Freshing up your ggplots

CRAN_Status_Badge downloads R-CMD-check

Just another ggplot2 and knitr extension package.

This package contains functions primarily in these domains of ggplot2:

library(ggplot2)
library(lemon)
ggplot(mtcars, aes(x=cyl, y=mpg)) + 
  geom_point(size=0.1) + 
  coord_capped_cart(bottom=brackets_horisontal(), left='both') +
  theme_light() + 
  theme(panel.border=element_blank(), axis.line = element_line(),
        axis.title=element_blank(), axis.text=element_blank(),
        panel.grid=element_blank(), axis.ticks.x = element_line(colour='black'))
ggplot(mtcars, aes(x=cyl, y=mpg)) + 
  geom_point(size=0.1) + 
  coord_capped_cart(bottom='both', left='both') +
  facet_rep_wrap(~carb) +
  theme_light() + 
  theme(panel.border=element_blank(), axis.line = element_line(),
        axis.title=element_blank(), axis.text=element_blank(),
        panel.grid=element_blank(), axis.ticks = element_blank(), 
        axis.ticks.length = unit(0, 'npc'), panel.spacing=unit(1, 'mm'),
        strip.background=element_blank(), strip.text=element_blank())
ggplot(data.frame(x=1:3, y=c(1,2.4,3.5)), aes(x, y)) +
  geom_pointline(size=0.5) +
  coord_capped_cart(xlim=c(0,4), bottom='both', left='both') +
  theme_light() + 
  theme(panel.border=element_blank(), axis.line = element_line(),
        axis.title=element_blank(), axis.text=element_blank(),
        panel.grid=element_blank(), axis.ticks.x = element_line(colour='black'))

As well as some functions in knitr.

Installation

# install.packages("devtools")

# Install release from GitHub:
devtools::install_github("stefanedwards/lemon", ref='v0.4.7')

# Or get the lastest development version from GitHub:
devtools::install_github("stefanedwards/lemon")

Axis lines

We can display a limit on the axes range.

library(lemon)
ggplot(mtcars, aes(x=cyl, y=mpg)) + 
  geom_point() + 
  coord_capped_cart(bottom='both', left='none') +
  theme_light() + theme(panel.border=element_blank(), axis.line = element_line())

NB: Disable panel.border and enable axis.line in theme, otherwise you will not see an effect!

We could also show that the x-axis is categorical (or ordinal):

(p <- ggplot(mtcars, aes(x=as.factor(cyl), y=mpg)) + 
  geom_point(position=position_jitter(width=0.1)) + 
  coord_flex_cart(bottom=brackets_horisontal(), left=capped_vertical('both')) +
  theme_light() + theme(panel.border=element_blank(), axis.line = element_line())
)

When capping the axis lines, they are never capped further inwards than the ticks! Look up

Facets

Having produced such wonderous axes, it is a pity they are not plotted around all panels when using faceting. We have extended both facet_grid and facet_wrap to produce axis, ticks, and labels on all panels:

p + facet_rep_wrap(~gear, ncol=2, label=label_both)

They work just like the normal ones; look up facet_rep_grid and facet_rep_wrap.

geom_pointline

A geom that combines both points and lines. While possible by using both geom_point and geom_line, position adjustments are not preserved between the two layers. geom_pointline and geom_pointpath combines geom_point with geom_line and geom_path, respectively, while preserving position adjustments.

library(grid)
library(gtable)

p <- ggplot(mtcars, aes(wt, mpg, colour=factor(cyl))) + 
  geom_point(col='grey') +
  theme_light() + theme(panel.border=element_blank(), axis.line = element_line()) +
  theme(legend.position='hidden', plot.title = element_text(size=rel(0.8)))

p1 <- p + geom_point(position=position_jitter(0.1, 0.1)) + geom_line(position=position_jitter(0.1, 0.1)) +
  labs(title='geom_point(position=position_jitter(0.1, 0.1)) + \ngeom_line(position=position_jitter(0.1, 0.1))')
p2 <- p + geom_pointline(position=position_jitter(0.1, 0.1)) +
  labs(title='geom_pointline(position=position_jitter(0.1, 0.1))')

g1 <- ggplotGrob(p1)
g2 <- ggplotGrob(p2)
grid.newpage()
grid.draw(cbind(g1, g2, size = 'first'))

Left: geom_point and geom_line as two separate geoms. Right: The two geoms combined into geom_pointline. Both produced with ggplot(mtcars, aes(wt, mpg, colour=factor(cyl))) + geom_point(col='grey'), where the grey points indicate the true location of the datapoint.

An added visual effect is seen as the lines do not touch the points, leaving a small gap (set by argument distance).

Legends

Reposition the legend onto the plot. Exactly where you want it:

dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
d <- ggplot(dsamp, aes(carat, price)) +
  geom_point(aes(colour = clarity))
reposition_legend(d, 'top left')

The legend repositioned onto the top left corner of the panel.

Scavenging the Internet, we have found some functions that help work with legends.

Frequently appearing on Stack Overflow, we bring you g_legend:

library(grid)
legend <- g_legend(d)
grid.newpage()
grid.draw(legend)

The legend grob, by itself.

Originally brought to you by (Baptiste AuguiƩ)[http://baptiste.github.io/] (https://github.com/tidyverse/ggplot2/wiki/Share-a-legend-between-two-ggplot2-graphs) and (Shaun Jackman)[http://rpubs.com/sjackman] (http://rpubs.com/sjackman/grid_arrange_shared_legend). We put it in a package.

dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
p1 <- qplot(carat, price, data = dsamp, colour = clarity)
p2 <- qplot(cut, price, data = dsamp, colour = clarity)
p3 <- qplot(color, price, data = dsamp, colour = clarity)
p4 <- qplot(depth, price, data = dsamp, colour = clarity)
grid_arrange_shared_legend(p1, p2, p3, p4, ncol = 2, nrow = 2)

Four plots that share the same legend.

Extensions to knitr

knitr allows S3 methods for knit_print for specialised printing of objects. We provide lemon_print for data frames, dplyr tables, and summary objects, that can be used to render the output, without mucking up the code source. An added benefit is that we can use RStudio's inline data frame viewer:

Viewing data frames in R Notebooks in RStudio

Relative file paths made safe

Using knitr for computations that use external binaries and/or write temporary files, setting the root directory for knitr's knitting saves the user from a file mess. E.g.

knitr::opts_knit$set(root.dir=TMPDIR)

But we want to keep our file paths relative for the scripts / document to be transferable. We introduce the .dot functions:

TMPDIR=tempdir()

.data <- .dot('data')

knitr_opts_knit$set(root.dir=TMPDIR)

We can then load our data file using the created .data function, even though the chunk is executed from TMPDIR.

dat <- read.table(.data('mydata.tab'))


stefanedwards/lemon documentation built on Jan. 14, 2024, 5:55 a.m.