This geom is equivalent in functionality to ggplot2::geom_sf()
for LINESTRING
geometries and allows for plotting of edges in their geographical space in
different colours, linetypes and widths.
geom_edge_sf(
mapping = NULL,
data = get_sf_edges(),
position = "identity",
show.legend = NA,
...
)
Set of aesthetic mappings created by ggplot2::aes()
or ggplot2::aes_()
. By default geometry is mapped to the geometry in
the edge data.
The data to be displayed in this layer. There are three options:
If NULL
, the default, the data is inherited from the plot
data as specified in the call to ggplot()
.
A data.frame
, or other object, will override the plot
data. All objects will be fortified to produce a data frame. See
fortify()
for which variables will be created.
A function
will be called with a single argument,
the plot data. The return value must be a data.frame
, and
will be used as the layer data. A function
can be created
from a formula
(e.g. ~ head(.x, 10)
).
Position adjustment, either as a string naming the adjustment
(e.g. "jitter"
to use position_jitter
), or the result of a call to a
position adjustment function. Use the latter if you need to change the
settings of the adjustment.
logical. Should this layer be included in the legends?
NA
, the default, includes if any aesthetics are mapped.
FALSE
never includes, and TRUE
always includes.
You can also set this to one of "polygon", "line", and "point" to override the default legend.
Other arguments passed on to layer()
. These are
often aesthetics, used to set an aesthetic to a fixed value, like
colour = "red"
or size = 3
. They may also be parameters
to the paired geom/stat.
geom_edge_sf
understand the following aesthetics.
alpha
colour
linetype
filter
Lorena Abad
Other geom_edge_*:
geom_edge_arc()
,
geom_edge_bend()
,
geom_edge_bundle_force()
,
geom_edge_bundle_minimal()
,
geom_edge_bundle_path()
,
geom_edge_density()
,
geom_edge_diagonal()
,
geom_edge_elbow()
,
geom_edge_fan()
,
geom_edge_hive()
,
geom_edge_link()
,
geom_edge_loop()
,
geom_edge_parallel()
,
geom_edge_point()
,
geom_edge_span()
,
geom_edge_tile()
if (require("sfnetworks", quietly = TRUE)) {
gr <- sfnetworks::as_sfnetwork(roxel)
ggraph(gr, 'sf') + geom_edge_sf()
}
Run the code above in your browser using DataLab