Problem Set I

ggplot(diamonds,aes(carat,price,col=clarity,shape=cut)) + geom_point() Use facet_wrap() to facet your diamonds figure by color. We used facet_grid() earlier. Use ?facet_wrap to find information on how to use facet_wrap(). Again, looking at the examples at the end of the help document will be very useful. ................
................