Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 26th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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)