ggmap_data {forcis} | R Documentation |
Map the spatial distribution of FORCIS data
Description
Maps the spatial distribution of FORCIS data.
Usage
ggmap_data(data, col = "red", ...)
Arguments
data |
a |
col |
a |
... |
other graphical parameters passed on to |
Value
A ggplot
object.
Examples
# Import example dataset ----
file_name <- system.file(file.path("extdata", "FORCIS_net_sample.csv"),
package = "forcis")
net_data <- read.csv(file_name)
# Map data (default) ----
ggmap_data(net_data)
# Map data ----
ggmap_data(net_data, col = "black", fill = "red", shape = 21, size = 2)
[Package forcis version 1.0.1 Index]