From e6a7433ba469d9d7ec95d64ee800a41c3055b56c Mon Sep 17 00:00:00 2001 From: Chantel Wetzel Date: Tue, 9 Jul 2024 10:59:35 -0700 Subject: [PATCH] fix res --- R/plot_index.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/plot_index.R b/R/plot_index.R index d4b1bfd..96959aa 100644 --- a/R/plot_index.R +++ b/R/plot_index.R @@ -19,7 +19,7 @@ #' 2. Design based index by year and strata. #' @param width,height Numeric values for the figure width and height in #' inches. The defaults are 7 by 7 inches. -#' @param res The resolution to apply when saving figures. Lower resolution values +#' @param dpi The resolution to apply when saving figures. Lower resolution values #' can reduce file size which can be helpful when creating large documents #' with many figures. The default is 300. #' @@ -34,7 +34,7 @@ plot_index <- function( plot = 1:2, height = 7, width = 7, - res = 300) { + dpi = 300) { plotdir <- file.path(dir, "plots") check_dir(plotdir) @@ -88,7 +88,7 @@ plot_index <- function( if (!is.null(dir)) { ggplot2::ggsave( filename = plot_names[1], plot = gg, - height = height, width = width, units = "in", res = res + height = height, width = width, units = "in", dpi = dpi ) } else { print(gg) @@ -117,7 +117,7 @@ plot_index <- function( if (!is.null(dir)) { ggplot2::ggsave( filename = plot_names[1], plot = g2, - height = height, width = width, units = "in", res = res + height = height, width = width, units = "in", dpi = dpi ) } else { print(g2)