Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. require(ggplot2)
  2. d = data.frame(x=c(1,4,7,2,9,7), y=c(2,5,4,10,5,3), grp=c('a','a','b','b','c','c'))
  3. ggplot(d, aes(x, y, group=grp)) + geom_line()
  4. ggplot(d, aes(x, y, group=grp)) + geom_line() + scale_y_continuous(limits=c(0,7))
  5. ggplot(d, aes(x, y, group=grp)) + geom_line() + ylim(0,7)
  6.  
  7. ggplot(d, aes(x, y, group=grp)) + geom_line() +
  8. coord_cartesian(ylim=c(0, 7))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement