I got this map plot from TMAP library in R but as you can see there are many dark grey areas, is there a way to smooth these areas/boundaries so I can see better what color it should be?
The map is below:
I read about a post thar recommend using the lwd = 0
argument in my plotting function but I already tried and it did not work as I was expecting. My code for this plot is:
plotly <- dataframe %>% ggplot() + geom_sf(aes(label = name_muni, fill = Mortalidade),lwd = 0) + scale_fill_brewer(palette = "OrRd")
plotly <- plotly+ggtitle(title)+ xlab("") + ylab("") +theme(plot.title = element_text(hjust = 0.5))
As you can see the lwd = 0 argument rith there. Also, can I choose the percentage of boundaries that are plotted?