Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # Generate some data that fits the picture:
  2. x <- seq(from = -6, to = -0.01, by = 0.01)
  3. y <- 0.03/x
  4. plot(x,y)
  5.  
  6. # Now make all the numbers positive, and take ln(...):
  7. plot(log(x*-1), log(y*-1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement