我正在使用ggmap在地图上绘制一些点。这是错误消息:
删除了包含缺失值的10行(geom_point)。
这是我的代码:
library(ggmaps)
library(maps)
library(DataComputing)
map <- get_map(location='san francisco', zoom=12, maptype = 'terrain', source = 'google', color = 'color')
ggmap(map) %>%
+ geom_point(aes(x=longitude, y=latitude, colour = as.numeric(total)), data=district_crimes) %>%
+ scale_color_gradient(low='beige', high='blue')
Proof that longitude and latitude are numeric.
如何获得积分?感谢。