R: scatter points using longitude/latitude
问题 I want to fill the colour on a map. However, the plot doesn't come out as aspected. How can I visualize the data with longitude and latitude? install.packages("WDI") install.packages("tidyverse") library(WDI) library(tidyverse) literacy_globe <- WDI(country = "all", indicator = "SE.ADT.LITR.ZS", start = 2015, end = 2018, extra = TRUE) literacy_globe <- na.omit(literacy_globe) ggplot(literacy_globe, aes(x = longitude, y = latitude, group = iso3c)) + geom_point(aes(fill = income), colour =