gtable (version 0.1.1)

gtable_row: Create a single row gtable.

Description

Create a single row gtable.

Usage

gtable_row(name, grobs, height = NULL, widths = NULL,
    z = NULL, vp = NULL)

Arguments

height
a unit vector giving the height of this row
vp
a grid viewport object (or NULL).
name
a string giving the name of the table. This is used to name the layout viewport
widths
a unit vector giving the width of each column
grobs
a single grob or a list of grobs
z
a numeric vector giving the order in which the grobs should be plotted. Use Inf (the default) to plot above or -Inf below all existing grobs. By default positions are on the integers, giving plenty of room to insert new

Examples

Run this code
a <- rectGrob(gp = gpar(fill = "red"))
b <- circleGrob()
c <- linesGrob()
gt <- gtable_row("demo", list(a, b, c))
gt
plot(gt)
gtable_show_layout(gt)

Run the code above in your browser using DataLab