官术网_书友最值得收藏!

Saving plots

We can save a plot in various formats, such as .jpeg, .svg, .pdf, or .png. I prefer saving a plot as a .png file, as it is easier to edit a plot with Inkspace if saved in the PNG format.

How to do it…

To save a plot in the .png format, we can use the png() function as follows:

png("TEST.png", width = 300, height = 600)
plot(x,y, xlab = "x axis", ylab = "y axis", cex.lab = 3,col.lab = "red", main = "some data", cex.main=1.5, col.main = "red")
dev.off()

How it works…

We have used the png() function to save the plot as a PNG. To save a plot as a PDF, SVG, or JPEG, we can use the pdf(), svg(), or jpeg() functions, respectively.

The first argument in the png() function is the name of the file with the extension, followed by the width and height of the plot. We can now use the plot() function to generate a plot; any subsequent plots will also be saved with a .png extension, unless the dev.off() function is passed. The dev.off() function instructs R that we do not need to save the plots.

主站蜘蛛池模板: 阳西县| 南丹县| 秦皇岛市| 潢川县| 临沂市| 绥中县| 盖州市| 武强县| 永善县| 建水县| 甘南县| 土默特左旗| 故城县| 太白县| 兰溪市| 化隆| 剑河县| 金寨县| 盐边县| 乌拉特中旗| 师宗县| 喀喇| 高陵县| 武川县| 东至县| 宿迁市| 长沙县| 昭觉县| 玉龙| 开原市| 克什克腾旗| 泗水县| 望谟县| 长武县| 兰州市| 中卫市| 吕梁市| 昌图县| 根河市| 五家渠市| 当雄县|