I need to remove the political borders of the countries from the following ggplot2 map:
library(ggplot2)
world = map_data('world')
plot=ggplot() +
geom_polygon(data=world, aes(x=long, y=lat, group=group), fill='NA', color='black', size=0.2)
print(plot)
Any suggestion on how I can do this? Thanks

There are two workarounds to your question:
First workaround: Using maps instead of ggplot2
Which results in:
Second workaround: Using maps and ggplot2
The result:
Hope it helps