I can't get either ggplot's fortify or broom's tidy to include regions, even if I load the maptools library as suggested in another post.
I start by loading a bunch of libraries, including maptools (0.8-41), rgeos (0.3-22), broom (0.4.1) and ggplot2 (2.2.1.9000). Next I grab a map of the world that has a range of different region choices, including the one I'm interested in - ISO_a3 - with the following command.
world <- readOGR(dsn="https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_50m_admin_0_countries.geojson", layer="OGRGeoJSON")
Next I run map <- broom::tidy(world, region = "iso_a3")
head(map) generates the following. Note that no region column is included.
long lat order hole piece group id
1 48.93857 11.258447 1 FALSE 1 -99.1 -99
2 48.93848 10.982324 2 FALSE 1 -99.1 -99
3 48.93848 10.714209 3 FALSE 1 -99.1 -99
4 48.93838 10.433252 4 FALSE 1 -99.1 -99
5 48.93828 9.973486 5 FALSE 1 -99.1 -99
6 48.93828 9.807617 6 FALSE 1 -99.1 -99