Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. library(ggmap)
  2. library(ggplot2)
  3.  
  4. d <- data.frame(lat=c(33.79245),
  5. lon=c(-84.32130))
  6.  
  7. emory <- get_map("Atlanta,Georgia", zoom=12)
  8.  
  9. p <- ggmap(emory)
  10. p <- p + geom_point(data=d, aes(x=lon, y=lat),
  11. color="red", size=20, alpha=0.5)
  12. p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement