Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. library(ggplot2)
  2. UK <- map_data(map = "world", region = "UK") # changed map to "world"
  3. ggplot(data = UK, aes(x = long, y = lat, group = group)) +
  4. geom_polygon() +
  5. coord_map()
  6.  
  7. plot(orotl.shp, xlim=c(-125, -115), ylim=c(42,47))
  8. plot(orstationc.neighbors.dist, orstationc.loc, add=T, lwd=2, col="blue")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement