- R Data Visualization Cookbook
- Atmajitsinh Gohil
- 197字
- 2021-08-06 19:21:09
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.
- LaTeX Cookbook
- Spring Cloud Alibaba微服務架構設計與開發(fā)實戰(zhàn)
- Learning Apex Programming
- 軟件界面交互設計基礎
- Offer來了:Java面試核心知識點精講(原理篇)
- Python金融數(shù)據(jù)分析
- FFmpeg入門詳解:音視頻原理及應用
- Python算法詳解
- Microsoft Azure Storage Essentials
- JBoss:Developer's Guide
- Apache Solr PHP Integration
- WCF技術剖析(卷1)
- 一覽眾山小:ASP.NET Web開發(fā)修行實錄
- Improving your Penetration Testing Skills
- Internet of Things with Arduino Cookbook