Created
January 22, 2016 10:56
-
-
Save gireeshkbogu/2e838e9bf624f15996f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | |
Author
gireeshkbogu
commented
Jan 22, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment