Skip to content

Instantly share code, notes, and snippets.

@pedroj
Created March 25, 2013 16:31
Show Gist options
  • Select an option

  • Save pedroj/5238459 to your computer and use it in GitHub Desktop.

Select an option

Save pedroj/5238459 to your computer and use it in GitHub Desktop.
ggplot-faceted scatter plot
ggplot(small)
+geom_point(aes(x=carat,y=price,colour=cut))
+scale_y_log10()
+facet_wrap(~cut)
+opts(title="First example")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment