layout_igraph
Calculate layout, i.e. node positions, for a network.
layout_igraph(targets: list[number], *weights: list[number], {
"param": value,
...
}) -> (x: column, y: column)
Use igraph to create your own layout. Methods and possible parameters are described here.
layout_igraph(targets: list[number], *weights: list[number], {
"param": value,
...
}) -> (x: column, y: column)
Algorithm to use. The name of a supported clustering algorithm (currently allows ‘fr’, ‘fruchterman_reingold’, ‘drl’, ‘sugiyama’).
Values must be one of the following:
fr
fruchterman_reingold
drl
sugiyama
Links directed. Are the links directed (true) or not (false).
Seed. Seed to initialize the graph.
Was this page helpful?
layout_igraph(targets: list[number], *weights: list[number], {
"param": value,
...
}) -> (x: column, y: column)