Skip to content

Instantly share code, notes, and snippets.

@gireeshkbogu
Created January 22, 2016 10:56
Show Gist options
  • Save gireeshkbogu/2e838e9bf624f15996f1 to your computer and use it in GitHub Desktop.
Save gireeshkbogu/2e838e9bf624f15996f1 to your computer and use it in GitHub Desktop.
library(ggplot2)
ggplot(mtcars, aes(x=wt, y=disp, colour=cyl, size=gear)) +
geom_point(shape=19, alpha=0.8)+ scale_colour_gradientn(colours=rainbow(10)) +
stat_smooth( method="lm", size=0.5, colour="black")
@gireeshkbogu
Copy link
Author

scatterplot_with_bubbles

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment