How to plot regions in a country, each shaded by some corresponding value
问题 In particular I have a set of distinct regions in India, each with a "marketshare" value. regions <- data.frame(Region=c("TELANGANA", "TAMIL NADU", "JAMMU & KASHMIR"), Marketshare=c(.25, .30, .15)) regions Region Marketshare 1 TELANGANA 0.25 2 TAMIL NADU 0.30 3 JAMMU & KASHMIR 0.15 I can plot India using ggmap real easily using library(ggmap) map <- get_map("India", zoom=6, maptype="toner-lite") ggmap(map) But how can I specifically include the regions in my dataset and shade each of them