Simple wrapper to plot the built-in world map.
Usage
plot_world(fill = "gray90", border = "gray50", ...)
Arguments
- fill
Fill color for countries
- border
Border color for countries
- ...
Additional arguments passed to plot()
Value
NULL invisibly. Creates a plot as side effect.
Examples
if (FALSE) { # \dontrun{
# Quick world map
plot_world()
# Custom colors
plot_world(fill = "lightblue", border = "darkblue")
} # }