Tabular data is usually formatted outside the graphics device, e.g
via LaTeX, or html tables. However, in some cases it may be convenient
to display small tables alongside graphics. A couple of
packages offer this possibility with base graphics (plotrix
for instance); the gridExtra provides the pair of
tableGrob/grid.table functions for this purpose.
Note: This vignette uses the development version of
gridExtra, some features may not be yet available in the
released version.
library(gridExtra)
library(grid)
d <- head(iris[,1:3])
grid.table(d)
The spacing of each row/column is automatic, and will adjust to
bigger cell contents. Plotmath notation may be used, with the
parse=TRUE argument. Note that this is applied to
individual strings of text, and reverts to standard text if parsing
fails (this is useful when mixing multiline text with plotmath in
different cells).
d[2,3] <- "this is very wwwwwide"
d[1,2] <- "this\nis\ntall"
colnames(d) <- c("alpha*integral(xdx,a,infinity)",
"this text\nis high", 'alpha/beta')
tt <- ttheme_default(colhead=list(fg_params = list(parse=TRUE)))
grid.table(d, theme=tt)
The formatting is controlled by themes, which are nested
lists of graphical parameters. See ttheme_default and
ttheme_minimal for two built-in examples. Changing a few
parameters at a time amounts to modifying the list with the new
values.
tt1 <- ttheme_default()
tt2 <- ttheme_minimal()
tt3 <- ttheme_minimal(
core=list(bg_params = list(fill = blues9[1:4], col=NA),
fg_params=list(fontface=3)),
colhead=list(fg_params=list(col="navyblue", fontface=4L)),
rowhead=list(fg_params=list(col="orange", fontface=3L)))
grid.arrange(
tableGrob(iris[1:4, 1:2], theme=tt1),
tableGrob(iris[1:4, 1:2], theme=tt2),
tableGrob(iris[1:4, 1:2], theme=tt3),
nrow=1)
If the formatting values are fewer than the number of cells, they are recycled along columns,
t1 <- ttheme_default(core=list(
fg_params=list(fontface=c(rep("plain", 4), "bold.italic")),
bg_params = list(fill=c(rep(c("grey95", "grey90"),
length.out=4), "#6BAED6"),
alpha = rep(c(1,0.5), each=5))
))
grid.table(iris[1:5, 1:3], theme = t1)
The text labels can be justified; the default is “centre” for the
core and header, and “right” for the row names. These settings can be
adjusted by passing the relevant parameters of textGrob via
the theme nested lists,
tt1 <- ttheme_default()
tt2 <- ttheme_default(core=list(fg_params=list(hjust=1, x=0.9)),
rowhead=list(fg_params=list(hjust=1, x=0.95)))
tt3 <- ttheme_default(core=list(fg_params=list(hjust=0, x=0.1)),
rowhead=list(fg_params=list(hjust=0, x=0)))
grid.arrange(
tableGrob(mtcars[1:4, 1:2], theme=tt1),
tableGrob(mtcars[1:4, 1:2], theme=tt2),
tableGrob(mtcars[1:4, 1:2], theme=tt3),
nrow=1)
Being based on gtable, the table can be further
processed. In particular, we may edit the cell sizes to align with other
content on the page.
g <- g2 <- tableGrob(iris[1:4, 1:3], cols = NULL, rows=NULL)
g2$widths <- unit(rep(1/ncol(g2), ncol(g2)), "npc")
grid.arrange(rectGrob(), rectGrob(), nrow=1)
grid.arrange(g, g2, nrow=1, newpage = FALSE)
The alignment of several tables can be achieved with the
combine function (adapted from
gtable:::join),
d1 <- PlantGrowth[1:3,1, drop=FALSE]
d2 <- PlantGrowth[1:2,1:2]
g1 <- tableGrob(d1)
g2 <- tableGrob(d2)
haligned <- gtable_combine(g1,g2, along=1)
valigned <- gtable_combine(g1,g2, along=2)
grid.newpage()
grid.arrange(haligned, valigned, ncol=2)
Other grobs such as separating lines and rectangles (borders, boxes)
may be added. In this case, keep in mind that row, column and cell
numbering includes the column of row labels and the row of column labels
if they are present. Let us illustrate this by adding some
borders (using rectGrob) to a simple table without row
numbers. We’ll add two actually, to give a nice effect of a heavy line
under the row of column headers.
library(gtable)
g <- tableGrob(iris[1:4, 1:3], rows = NULL)
g <- gtable_add_grob(g,
grobs = rectGrob(gp = gpar(fill = NA, lwd = 2)),
t = 2, b = nrow(g), l = 1, r = ncol(g))
g <- gtable_add_grob(g,
grobs = rectGrob(gp = gpar(fill = NA, lwd = 2)),
t = 1, l = 1, r = ncol(g))
grid.draw(g)
Note that when using rectGrob the top, bottom, left and
right arguments (t, b, l, r) are the rows and columns which
will be inside the rectangle. If we repeat the above code
almost exactly, but don’t suppress the column of row labels, we see that
column 1 is now the column of row labels (and it doesn’t look that good
either, but that’s not our point).
g <- tableGrob(iris[1:4, 1:3])
g <- gtable_add_grob(g,
grobs = rectGrob(gp = gpar(fill = NA, lwd = 2)),
t = 2, b = nrow(g), l = 1, r = ncol(g))
g <- gtable_add_grob(g,
grobs = rectGrob(gp = gpar(fill = NA, lwd = 2)),
t = 1, l = 1, r = ncol(g))
grid.draw(g)
When adding line segments to separate rows and columns using
segmentsGrob, the row and column numbering scheme is the
same (it includes any row or column labels). When working with line
segments, you should keep in mind the default coordinate values for
segmentsGrob. They are x0 = 0, y0 = 0, x1 = 1, y1 = 1, all
in npc, relative to the cell(s) you are modifying, with the lower left
corner being 0,0. For clarity, we show all the arguments in these
examples. With this in mind, to add a line across the bottom of a single
cell, use:
g <- tableGrob(iris[1:4, 1:3])
g <- gtable_add_grob(g,
grobs = segmentsGrob( # line across the bottom
x0 = unit(0,"npc"),
y0 = unit(0,"npc"),
x1 = unit(1,"npc"),
y1 = unit(0,"npc"),
gp = gpar(lwd = 2.0)),
t = 3, b = 3, l = 3, r = 3)
grid.draw(g)