#remotes::install_github("ropensci/rnaturalearthhires")#remotes::install_github("ropensci/rnaturalearth")library(rnaturalearth)library(rnaturalearthhires)#install.packages("sf")library(sf)#install.packages("earth")library(earth)ETH <-ne_states(country ="Ethiopia", returnclass ="sf")library(tidyverse)library(ggthemes)library(ggspatial)ggplot(ETH)+geom_sf(fill ="gray90")+geom_point(data = cr, aes(lon, lat, color = inc))+scale_color_viridis_c()+theme_minimal()+theme(legend.position ="bottom")+annotation_scale(location ="tl")+annotation_north_arrow(location ="br", which_north ="true")+labs(title ="Ferrugem do café na Etiópia", x ="longitude", y="latitude", subtitle ="levantamento em fazendas", caption ="Fonte: Mesquita et al.(2025)", color ="Incidencia (%)")