Guest User

Untitled

a guest
Nov 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. dt <- data.frame(x=rep(c(1,10,100), each=5),
  2. y=runif(15))
  3.  
  4. library(ggplot2)
  5. ggplot(dt, aes(x=x, y=y, group=x)) + geom_boxplot() + theme_minimal()
Add Comment
Please, Sign In to add comment