one can save a histogram in different sizes when he/she exports it with Rstudio. My question is that is there any sort of command or function in R that can do that? How can we save histograms with different sizes through R script?
one can save a histogram in different sizes when he/she exports it with Rstudio. My question is that is there any sort of command or function in R that can do that? How can we save histograms with different sizes through R script?
found it:
In R there is also tiff() and jpeg() commands which also have the width and height arguments to make adjustments.
What do you actually mean by different size? If it's the dimension you can save the same plot with different width and height by adding separate codes like following.
png(filename = "my_plot.png", width = 480, height = 480, units = "px", pointsize = 12, bg = "white", antialias)
png(filename = "my_plot.png", width = 640, height = 640, units = "px", pointsize = 12, bg = "white", antialias) dev.off()
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
This reminds me of the joke: What is the best way to find typos on a manuscript? Press the
submit
button.