I have a simple shapefile I want to plot with the general plot() (I noticed that ggplot is extremely slow in plotting maps).
I can correctly plot the shape with the code
library(maptools)
map_shp <- readShapePoly(map_filepath)
map <- fortify(map_shp)
plot(map)
But how could I define the color and width of the lines?