Guest User

Untitled

a guest
Dec 17th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. library("ggplot2")
  2. library("Rmisc")
  3.  
  4. myplots <- list()
  5. x = seq(1,100,1)
  6. y = seq(1,100,1)
  7.  
  8. for(i in 1:10) {
  9. myplots[[i]] <- plot(x,y)
  10. }
  11.  
  12. multiplot(plotlist = myplots, cols=2)
Add Comment
Please, Sign In to add comment