Description Usage Arguments Value Examples
View source: R/ggcyto_GatingLayout.R
It is usually implicitly invoked by print and show method and can be called by user when the further manipulation is needed,
1 | ggcyto_arrange(x, ...)
|
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 |
gtable
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.