Skip to content

Instantly share code, notes, and snippets.

@fozy81
Created April 15, 2016 19:46
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 fozy81/cf2c9a802d25ddbb4dd339ff9a7d0bac to your computer and use it in GitHub Desktop.
Save fozy81/cf2c9a802d25ddbb4dd339ff9a7d0bac to your computer and use it in GitHub Desktop.
maps
library(ggmap)
df <- data.frame(
lat = c(55.56, 55.53),
lon = c(-4.5760,-4.52),
value = c("Good","Bad")
)
qmplot(lon, lat, data = df, colour = value, size = value, source='osm')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment