print.CustomLayout: Print a CustomLayout object.

Description Usage Arguments Value See Also Examples

View source: R/Layout.R

Description

Print a CustomLayout object.

Usage

1
2
## S3 method for class 'CustomLayout'
print(x, ...)

Arguments

x

object of class CustomLayout.

...

optional arguments to print or plot methods. Not used here.

Value

Invisibly return input x.

See Also

lay_new lay_show

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
lay  <- lay_new(matrix(1:4,nc=2),widths=c(3,2),heights=c(2,1))
lay2 <- lay_new(matrix(1:3))
cl <- lay_bind_col(lay,lay2, widths=c(3,1))
print(cl)

cl2 <- lay_bind_col(cl,cl, c(2,1))
print(cl2)

cl3 <- lay_bind_row(cl,cl, c(20,1))
print(cl3) 

zzawadz/customLayout documentation built on June 9, 2021, 11:10 a.m.