Guest User

Untitled

a guest
Feb 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ggplot() +
  2. geom_polygon(data =Map_plot,
  3. aes(x = long.x, y = lat.x, group = group, fill = RD),
  4. color = "#636668") +
  5. scale_fill_gradient(low='#FFFFFF', high='#008275') +
  6. coord_fixed(1.0)+
  7. labs(x = NULL, y = NULL, fill = NULL,
  8. title="",
  9. subtitle = "")+
  10. theme(axis.text.x = element_blank(),
  11. axis.text.y = element_blank(),
  12. axis.ticks = element_blank(),
  13. rect = element_blank()) +
  14. theme_void()
  15. theme(text = element_text(family = "Gill Sans MT", size = 8),
  16. plot.title = element_text(size = 12, face = "bold"),
  17. legend.text = element_text(size = 7),
  18. legend.position = c(-0.25, 0.55))
Add Comment
Please, Sign In to add comment