Description Usage Arguments Aesthetics Computed variables Note Author(s) See Also Examples
This geom makes it possible to add a layer showing edge presence as a density
map. Each edge is converted to n
points along the line and a jitter is
applied. Based on this dataset a two-dimensional kernel density estimation is
applied and plotted as a raster image. The density is mapped to the alpha
level, making it possible to map a variable to the fill.
1 2 |
mapping |
Set of aesthetic mappings created by |
data |
The return of a call to |
position |
Position adjustment, either as a string, or the result of a call to a position adjustment function. |
show.legend |
logical. Should this layer be included in the legends?
|
n |
The number of points to estimate in the x and y direction, i.e. the resolution of the raster. |
... |
other arguments passed on to |
geom_edge_density understand the following aesthetics. Bold aesthetics are automatically set, but can be overridden.
x
y
xend
yend
edge_fill
filter
The coordinates for each pixel in the raster
The density associated with the pixel
In order to avoid excessive typing edge aesthetic names are
automatically expanded. Because of this it is not necessary to write
edge_colour
within the aes()
call as colour
will
automatically be renamed appropriately.
Thomas Lin Pedersen
Other geom_edge_*: geom_edge_arc
,
geom_edge_diagonal
,
geom_edge_elbow
,
geom_edge_fan
,
geom_edge_hive
,
geom_edge_link
,
geom_edge_loop
1 2 3 4 5 6 7 | require(igraph)
gr <- make_graph('bull')
E(gr)$class <- sample(letters[1:3], gsize(gr), replace = TRUE)
ggraph(gr, 'igraph', algorithm = 'nicely') +
geom_edge_density(aes(fill = class)) +
geom_edge_link() + geom_node_point()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.