How can I save a histogram in different widths and heights?
3
0
Entering edit mode
6.8 years ago
tannaz • 0

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?

R • 1.1k views
ADD COMMENT
0
Entering edit mode
ADD COMMENT
2
Entering edit mode

This reminds me of the joke: What is the best way to find typos on a manuscript? Press the submit button.

ADD REPLY
0
Entering edit mode
6.8 years ago
theobroma22 ★ 1.2k

In R there is also tiff() and jpeg() commands which also have the width and height arguments to make adjustments.

ADD COMMENT
0
Entering edit mode
6.8 years ago

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()

ADD COMMENT

Login before adding your answer.

Traffic: 1817 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6