Guest User

Untitled

a guest
Mar 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. ggplot(diamonds, aes(price)) + geom_histogram(binwidth=500) +
  2. facet_wrap(~cut)
  3.  
  4. ggplot(diamonds, aes(diamonds$price)) + geom_histogram(binwidth=500) +
  5. facet_wrap(~cut)
Add Comment
Please, Sign In to add comment