Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ggplot(mtcars, aes(mpg, wt*30)) +
  2. geom_point() +
  3. labs(x="Fuel effiiency (mpg)", y="Weight (tons)",
  4. title="Seminal ggplot2 scatterplot example",
  5. subtitle="A plot that is only useful for demonstration purposes",
  6. caption="Brought to you by the letter 'g'") +
  7. theme_ipsum(base_family="San Francisco Text",
  8. subtitle_family="San Francisco Text",
  9. subtitle_face = "plain",
  10. axis_title_family = "San Francisco Text Medium",
  11. axis_title_face = "plain",
  12. caption_family="San Francisco Text Light",
  13. caption_face = "plain")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement