bboxsf <- make_bbox(SFstations$longitude, SFstations$latitude, f = .05)
mapsfscale <- get_map(bboxsf)
SFmapscale <- ggmap(mapsfscale) + geom_point(data = SFstations, aes(x =SFstations$longitude, y= SFstations$latitude, size=Freq), alpha =1.0) + geom_text(aes(label = SFstations$name),vjust=0, hjust= 0)
Here is my code above. I managed to scale my points on the map based off frequency. When I try to add labels though I am getting error of
Aesthetics must be either length 1 or the same as the data (4): label, x, y.