add_layout_
From igraph v1.2.2
by Gabor Csardi
Add layout to graph
Add layout to graph
Usage
add_layout_(graph, ..., overwrite = TRUE)
Arguments
- graph
The input graph.
- ...
Additional arguments are passed to
layout_
.- overwrite
Whether to overwrite the layout of the graph, if it already has one.
Value
The input graph, with the layout added.
See Also
layout_
for a description of the layout API.
Other graph layouts: component_wise
,
layout_as_bipartite
,
layout_as_star
,
layout_as_tree
,
layout_in_circle
,
layout_nicely
,
layout_on_grid
,
layout_on_sphere
,
layout_randomly
,
layout_with_dh
,
layout_with_fr
,
layout_with_gem
,
layout_with_graphopt
,
layout_with_kk
,
layout_with_lgl
,
layout_with_mds
,
layout_with_sugiyama
,
layout_
, merge_coords
,
norm_coords
, normalize
Examples
# NOT RUN {
(make_star(11) + make_star(11)) %>%
add_layout_(as_star(), component_wise()) %>%
plot()
# }
Community examples
Looks like there are no examples yet.