save_ggplot.svg {Coxmos}R Documentation

save_ggplot.svg

Description

Allows to save 'ggplot2' objects in .svg format based on an specific resolution.

Usage

save_ggplot.svg(
  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 as many plot images as list objects 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.svg(g, folder = tempdir())
}


[Package Coxmos version 1.0.2 Index]