Guest User

Untitled

a guest
Jan 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. library(ggplot2)
  2. diamonds %>%
  3. sample_n(100) %>%
  4. ggplot(aes(x = depth, y = price, color = cut, size = clarity)) +
  5. geom_point()
Add Comment
Please, Sign In to add comment