Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. plot (V1, V2,
  2. type = "p",
  3. col = "red",
  4. cex = .2,
  5. xlab = "Force (N)",
  6. ylab = "Raw",
  7. ylim = c(0,4096))
  8. grid (col = "lightgray", lty = "dotted", lwd = par("lwd"), equilogs = TRUE)
  9. par (new = TRUE)
  10. plot (V1, V3,
  11. type = "p",
  12. col = "blue",
  13. cex = .2,
  14. xaxt = "n",
  15. yaxt = "n",
  16. xlab = "",
  17. ylab = "")
  18. axis (4)
  19. mtext ("Aftertouch", side = 4, line = 3)
  20. legend ("bottomright", col = c ("red", "blue"), lty = 1, legend = c ("Raw", "Aftertouch"))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement