lay_bind_row: Take two Layout objects and combine by rows.

Description Usage Arguments Examples

View source: R/Layout.R

Description

Take two Layout objects and combine by rows.

Usage

1
2
3
lay_bind_row(x, y, heights = c(1, 1), addmax = TRUE)

layRowBind(x, y, heights = c(1, 1), addmax = TRUE)

Arguments

x

object of class Layout

y

object of class Layout

heights

a vector with relative heights used in combining the x and y layouts.

addmax

if true (default) the ids of the plots in the second layout will be shifted by the number of plots in the first layout.

Examples

1
2
3
4
l1 = lay_new(matrix(c(1:2),ncol = 2),widths=c(4,1))
l2 = lay_new(matrix(c(1:4),ncol = 2),widths=c(1,1))
lb = lay_bind_row(l1,l2)
lay_show(lb)

customLayout documentation built on Jan. 16, 2021, 5:26 p.m.