File: merge.R

package info (click to toggle)
r-cran-patchwork 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,624 kB
  • sloc: sh: 15; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13

#' @export
#'
merge.patchwork <- function(x, ...) {
  patchwork <- new_patchwork()
  patchwork$plots <- list(x)
  add_patches(plot_filler(), patchwork)
}
#' @export
#'
merge.ggplot <- function(x, ...) {
  x
}