R/plot_grid.R

Defines functions plot_grid

Documented in plot_grid

#' Arrange plots in a grid.
#' 
#' Like [`cowplot::plot_grid()`], but with defaults modified.
#' @usage NULL
#' @export
plot_grid <- function(..., label_fontfamily = dviz_font_family,
                      label_fontface = "plain", hjust = 0, vjust = 1) {
  cowplot::plot_grid(..., label_fontfamily = label_fontfamily,
                     label_fontface = label_fontface,
                     hjust = hjust, vjust = vjust)
}
clauswilke/dviz.supp documentation built on Aug. 25, 2020, 2:12 a.m.