ggcyto_arrange: Arrange a list of ggplot objects into gtable

Description Usage Arguments Value Examples

View source: R/ggcyto_GatingLayout.R

Description

It is usually implicitly invoked by print and show method and can be called by user when the further manipulation is needed,

Usage

1

Arguments

x

ggcyto_gate_layout, which is essentially a list of ggplot objects that were previously stored as ggcyto_gate_layout object by autoplot function.

...

other arguments passed to arrangeGrob

Value

gtable

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
# get ggcyto_GatingLayout object from first sample
res <- autoplot(gs[[1]], nodes, bins = 64)
class(res)
# arrange it as one-row gtable object 
gt <- ggcyto_arrange(res, nrow = 1)
gt
# do the same to the second sample
gt2 <- ggcyto_arrange(autoplot(gs[[2]], nodes, bins = 64), nrow = 1)
# combine the two and print it on the sampe page
gt3 <- gridExtra::gtable_rbind(gt, gt2)
plot(gt3)

## End(Not run)

ggcyto documentation built on Nov. 8, 2020, 5:30 p.m.