Plots shapefile
See also
Other plotting:
plot_data_area()
Examples
if (FALSE) { # \dontrun{
# Read in shapefile
area <- sf::st_read(dsn = system.file("extdata","strata.shp",package="survdat"),quiet=T)
plot_shapefile(polygons=area)
# Plots shapefile and highlights GB region
GB <- c(1090, 1130:1210, 1230, 1250, 3460, 3480, 3490, 3520:3550)
plot_shapefile(polygons=area,filterPolygons = GB)
} # }