ggsave_quick {kim} | R Documentation |
ggsave quick
Description
quickly save the current plot with a timestamp
Usage
ggsave_quick(
name = NULL,
file_name_extension = "png",
timestamp = NULL,
width = 16,
height = 9
)
Arguments
name |
a character string of the png file name.
By default, if no input is given ( |
file_name_extension |
file name extension (default = "png").
If |
timestamp |
if |
width |
width of the plot to be saved. This argument will be
directly entered as the |
height |
height of the plot to be saved. This argument will be
directly entered as the |
Value
the output will be a .png image file in the working directory.
Examples
## Not run:
kim::histogram(rep(1:30, 3))
ggsave_quick()
## End(Not run)