Guest User

Untitled

a guest
Nov 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. svg(filename="Single.svg", pointsize=8)
  2.  
  3. svg(filename="Single.svg",
  4. width=2,
  5. height=2,
  6. pointsize=8)
  7.  
  8. plot(1:10, xlab = "X axis", ylab = "y axis", las = 1)
  9.  
  10. dev.off()
  11.  
  12. svg(filename="LayoutPlot.svg",
  13. width=4,
  14. height=4,
  15. pointsize=8)
  16.  
  17. layout(matrix(c(1,2,3,4), 2, 2, byrow = T))
  18.  
  19. plot(1:10, xlab = "X axis", ylab = "y axis", las = 1, col = "red")
  20. plot(1:10, xlab = "X axis", ylab = "y axis", las = 1, col = "red")
  21. plot(1:10, xlab = "X axis", ylab = "y axis", las = 1, col = "red")
  22. plot(1:10, xlab = "X axis", ylab = "y axis", las = 1, col = "red")
  23.  
  24. dev.off()
Add Comment
Please, Sign In to add comment