这个等式来自我的
previous question.我想绘制代表总人口的点,到目前为止,我使用scale_size来制作相对于总人口的点数.
但是,我想让这些点透明,因为点覆盖了地图.但是,只要我尝试发送的消息清楚,我就可以接受其他选项.
# load required packages library(ggmap) library(ggplot2) # query map of Birmingham,AL al1 <- get_map(location = c(lon = -86.304474,lat = 32.362563),zoom = 11,source = "osm",maptype = 'terrain') al1MAP <- ggmap(al1)+ geom_point(data=quote_bmh,aes(x=IntPtLon,y=IntPtLat,size=TotPop,colour="gold2"),colour="gold2") + scale_size(range=c(0,15))