内容来源fill是图形的填充色,color是图形外周颜色,但使用ggplot2绘图过程中发现,好像两者有时可以通用,特意学习一下。
按照大佬的说法是因为有时一些绘图对象我们只是关注到它的color。
使用中国地图实践一下:
library(ggmap)
cn = c(left = 73, bottom = 3, right = 136, top = 54)
map = get_stamenmap(cn, zoom = 5, maptype = "toner-lite")
province <- read.table('C:/Users/patrick/Desktop/中国省会经纬度.txt', header=T,sep=',')
ggmap(map)+
geom_point(data=province, aes(经度,纬度), shape=21, fill='black', color='red')
中国省会
网友评论