全部,
请参阅下面的 R 脚本代码。我只是想用商店(storeLocations)和客户(CustomerLocations)列表填充英国地图。
STRTRADECODE 是 StoreLocations 表中的列名,其中包含特定商店的名称。
我无法输出标签。请帮忙。
提前致谢。
library(RgoogleMaps)
library(maps)
library(ggmap)
library(ggplot)
UKMap <- qmap("United Kingdom", zoom = 6.0)
storeOverlay <- geom_point(aes(x = longitude, y = latitude),
data = StoreLocations, colour = "red")
storeOverlay <- storeOverlay + geom_text(data= StoreLocations, aes(label=STRTRADECODE))
CustomerOverlay <- geom_point(aes(x = longitude, y = latitude),
data = CustomerLocations, colour = "green")
UKMap + CustomerOverlay + storeOverlay