ggplot2 (version 2.1.0)

fortify.sp: Fortify method for classes from the sp package.

Description

To figure out the correct variable name for region, inspect as.data.frame(model).

Usage

"fortify"(model, data, region = NULL, ...)
"fortify"(model, data, ...)
"fortify"(model, data, ...)
"fortify"(model, data, ...)
"fortify"(model, data, ...)
"fortify"(model, data, ...)
"fortify"(model, data, ...)

Arguments

model
SpatialPolygonsDataFrame to convert into a dataframe.
data
not used by this method
region
name of variable used to split up regions
...
not used by this method

Examples

Run this code
if (require("maptools")) {
 sids <- system.file("shapes/sids.shp", package="maptools")
 nc1 <- readShapePoly(sids,
   proj4string = CRS("+proj=longlat +datum=NAD27"))
 nc1_df <- fortify(nc1)
}

Run the code above in your browser using DataCamp Workspace