I have a table summarising a balance for 15 different zipcodes, it has latitude and longitude. 4 columns in total: zipcode, balance (integer), latitude, and longitude.
Here it is:
Latitude and longitude were mapped from the main USA zipcodes database.
I want to reflect the balance of each zip code on the map, but it is not showing it.
Here is the code:
ggmap(map) + geom_point(data = eigpm_sp_summ2, aes(lat, lng,
size=mean_b)) +
scale_color_gradient(low="black", high="blue")
Here is the map it is showing me:
Any idea what I'm doing wrong?