Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created December 17, 2020 10:44
Show Gist options
  • Save darioappsilon/a161f46b1be93593e9796658f8c45097 to your computer and use it in GitHub Desktop.
Save darioappsilon/a161f46b1be93593e9796658f8c45097 to your computer and use it in GitHub Desktop.
012_scatter_plots
ggplot(mtcars, aes(x = mpg, y = hp)) +
geom_point(aes(size = qsec, color = cyl)) +
theme(legend.position = "top")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment