I draw two charts but want to have the same scale of dots in both for comparision
geofirmen<-data.frame(lon=c(1,2,3), lat=c(1,2,3), freqplz=c(5,10,15))
ggplot(data= geofirmen) + geom_point(aes(x = lon, y = lat, size=freqplz, alpha=.7), colour = "dodgerblue4")
and
geofirmen<-data.frame(lon=c(1,2,3), lat=c(1,2,3), freqplz=c(5,10,20))
ggplot(data= geofirmen) + geom_point(aes(x = lon, y = lat, size=freqplz, alpha=.7), colour = "dodgerblue4")
It is i want both have the legend scale of the bigger scale. Attention, the proportion of the graph have not to change since I picture a geografical map but the size of freqplz must be identical for a value of 10 etc. How does this work?