Skip to content

Instantly share code, notes, and snippets.

@dragstar328
Created January 8, 2016 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragstar328/28b96c1d49f956d5ad80 to your computer and use it in GitHub Desktop.
Save dragstar328/28b96c1d49f956d5ad80 to your computer and use it in GitHub Desktop.
ggplotことはじめ
library(ggplot2)
g = ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, colour=Species))
g + geom_point() + geom_smooth(method=glm)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment