| ggsave_quick | R Documentation |
quickly save the current plot with a timestamp
ggsave_quick( name = NULL, file_name_extension = "png", timestamp = NULL, width = 16, height = 9 )
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 |
the output will be a .png image file in the working directory.
## Not run: kim::histogram(rep(1:30, 3)) ggsave_quick() ## End(Not run)