79702473

Date: 2025-07-15 17:41:09
Score: 0.5
Natty:
Report link

The solution was to remove fill=NA from the aes() call, since it's not an aesthetic (that is, it doesn't apply to a variable, it just applies to the entire map):


wind_map <- ggplot()+
        geom_sf(data=shift_geometry(zip_geo), aes(fill=wind_group), color=NA)
+ geom_sf(data=shift_geometry(state_geo2), fill=NA, color="black")
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: leviemb