c {plotgardener} | R Documentation |
Combine multiple pgParams objects into a vector
c(..., recursive = FALSE)
... |
pgParams objects to be concatenated. |
recursive |
logical. If |
NULL
or an expression or a vector of an appropriate mode.
(With no arguments the value is NULL
.)
## Define parameters p1 <- pgParams(chrom = "chr1", assembly = "hg19") ## Define another set of parameters p2 <- pgParams(fontsize = 10, assembly = "hg19") ## Combine parameters into one `pgParams` object pTotal <- c(p1, p2)