I have a simple question: How does one remove an automatically added legend in tmap in R?
In this case, I want to remove that legend on the right, depicting \'level\
Instead of tm_polygons use tm_fill(title = "") to remove the legend title. This worked for me.
tm_polygons
tm_fill(title = "")