Skip to content

Instantly share code, notes, and snippets.

@cecilialee
Last active February 14, 2018 05:27
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 cecilialee/0622d1ea2c33ca1f948707f92b27c2d3 to your computer and use it in GitHub Desktop.
Save cecilialee/0622d1ea2c33ca1f948707f92b27c2d3 to your computer and use it in GitHub Desktop.
Scale x continuous in ggplot. #r #tidyverse #ggplot
library(tidyverse)
mtcars %>%
ggplot() +
geom_point(aes(x = gear, y = wt)) +
scale_x_continuous(labels = round, breaks = 3:5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment