save_ggplot {Coxmos} | R Documentation |
save_ggplot
Description
Allows to save 'ggplot2' objects in .tiff format based on an specific resolution.
Usage
save_ggplot(
plot,
folder,
name = "plot",
wide = TRUE,
quality = "4K",
dpi = 80,
custom = NULL
)
Arguments
plot |
'ggplot2' object. Object to plot and save. |
folder |
Character. Folder path as character type. |
name |
Character. File name. |
wide |
Logical. If TRUE, widescreen format (16:9) is used, in other case (4:3) format. |
quality |
Character. One of: "HD", "FHD", "2K", "4K", "8K" |
dpi |
Numeric. Dpi value for the image. |
custom |
Numeric vector. Custom size of the image. Numeric vector of width and height. |
Value
Generate a plot image in the specific folder or working directory.
Author(s)
Pedro Salguero Garcia. Maintainer: pedsalga@upv.edu.es
Examples
if(requireNamespace("ggplot2", quietly = TRUE)){
library(ggplot2)
data(iris)
g <- ggplot(iris, aes(Sepal.Width, Sepal.Length, color = Species))
g <- g + geom_point(size = 4)
save_ggplot(g, folder = tempdir())
}
[Package Coxmos version 1.0.2 Index]