- 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.
- 從零構建知識圖譜:技術、方法與案例
- Leap Motion Development Essentials
- 深入淺出Spring Boot 2.x
- GameMaker Programming By Example
- Mastering Android Game Development
- Python之光:Python編程入門與實戰
- SQL基礎教程(第2版)
- 21天學通C++(第5版)
- Access 2010數據庫應用技術實驗指導與習題選解(第2版)
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- Drupal 8 Development:Beginner's Guide(Second Edition)
- jQuery Mobile Web Development Essentials(Second Edition)
- Beginning C# 7 Hands-On:The Core Language
- Python程序設計案例教程:從入門到機器學習(微課版)
- Python機器學習技術:模型關系管理