Guest User

Untitled

a guest
Jun 26th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. How to use plot.window? (in R)
  2. xlim <- c(-30,30)
  3. ylim <- c(-5,5)
  4. plot.window(xlim , ylim )
  5. plot.new()
  6. points(1,1)
  7. points(0,0)
  8.  
  9. xlim <- c(-30,30)
  10. ylim <- c(-5,5)
  11. plot.new()
  12. plot.window( xlim , ylim )
  13. points(1,1)
  14. points(0,0)
Advertisement
Add Comment
Please, Sign In to add comment