ggsaver: Wrapper Function for 'ggplot2::ggsave()'

View source: R/ggsaver.R

ggsaverR Documentation

Wrapper Function for ggplot2::ggsave()

Description

This only exists to make it easy to use it in make_link()

Usage

ggsaver(plot, filename, ...)

Arguments

plot

Plot

filename

Note

...

Arguments forwarded to ggplot2::ggsave()

Value

No return value, called for side effects

Examples

library(ggplot2)
my_plot <- ggplot(data=mtcars, aes(x=hp, y=mpg)) + geom_point()
make_link(my_plot, folder=tempdir(), file_suffix = ".png",
          save_fn = ggsaver, width = 16, height = 16, units = "cm")

saros documentation built on June 8, 2025, 10:43 a.m.