Chloropleth map with geojson and ggplot2
问题 I am trying to map Human Poverty Index for various districts of Nepal with choropleth map in R using geojson and ggplot2. I read geojson data for Nepal with districts from here. I saw some examples here, here. This is what I did: # Read geojson data for nepal with districts library(tidyverse) library(geojsonio) #> #> Attaching package: 'geojsonio' #> The following object is masked from 'package:base': #> #> pretty spdf <- geojson_read("nepal-districts.geojson", what = "sp") ##https://github